"Display the items in the list that either belongs to the category Health or Entertainment."
I have a sample list: http://www.example.com/Lists/MyList/AllItems.aspx
And if I am to filter the list items to look for Categories with the value "Entertainment", the URL will look like this:
http://www.example.com/Lists/MyList/AllItems.aspx?View={ViewId}&FilterField=Categories&FilterValue=Entertainment
Suppose I'd like to filter by the list items with the Categories "Entertainment" OR "Health". Unfortunately, this URL would not work as I can only filter with 1 value for the same field at a time:
http://www.example.com/Lists/MyList/AllItems.aspx?View={ViewId}&FilterField1=Categories&FilterValue1=Entertainment&FilterField2=Categories&FilterValue2=Health
What is the URL for filtering with multiple values of the same field ("OR" condition) in a SharePoint list?