First, search the help docs and this forum. Maybe your question has been answered! The debugging steps can help, too. Still stuck? Delete this line and proceed.
What I’m trying to do
I’m trying to create a table that shows results that have one property value OR another.
My use case is that I have blogs that I’m researching, writing, or editing. I have a property called “Area” and I use the value “Blog”. I also have a property called “Next Action” and that is where I put one of the action values.
I want a table that shows me all blogs that are EITHER “writing” OR “editing”. I can show one, but I can’t figure out how to show both.
This is a view that works:
TABLE next-action as “Next Action”
WHERE contains(next-action,“Write”) AND contains(area,“Blog”)
But of course that does not include anything with an “edit” value and I can’t get it to work for both.
Things I have tried
I tried searching for the answer but I’m not sure how to phrase the request effectively and have not been able to turn anything up. Any thoughts are much appreciated, thank you.