This is for an html view I'm developing.
for each r in BBPOST [POST_STATUS == "Moderated" && ORGANIZATION == "Birchwood" && START_DATE >= zoho.currentdate]
This works as expected. Now, what if I want to also include data for other Organizations AND Birchwood?
It's like I need...
for each r in BBPOST [POST_STATUS == "Moderated" && ORGANIZATION == ("Birchwood" || "Rosendale" || "Craig") && START_DATE >= zoho.currentdate]
But this is malformed script.
I tried this, but it does not work:
for each r in BBPOST [POST_STATUS == "Moderated" && ORGANIZATION == "Birchwood" || ORGANIZATION == "Rosendale" || ORGANIZATION == "Craig" && START_DATE >= zoho.currentdate]
Is there some magic combination of parenthesis or sequencing that allows all this (POST_STATUS == "Moderated" && ORGANIZATION == "Birchwood" && START_DATE >= zoho.currentdate) AND (POST_STATUS == "Moderated" && ORGANIZATION == "Rosendale" && START_DATE >= zoho.currentdate) OR ((POST_STATUS == "Moderated" && ORGANIZATION == "Craig" && START_DATE >= zoho.currentdate)
