my goal is to create a URL that filters a SharePoint list with two filters that are logical OR combined.
What I have so far is:
AllItems.aspx/?
useFiltersInViewXml=1
&FilterFields1=Data1
&FilterValues1=123
&FilterTypes1=Text
&FilterOp1=In
&FilterFields2=Data2
&FilterValues2=321
&FilterTypes2=Text
&FilterOp2=In
But that AND combines the two filters. Is it possible to OR combine them?