Hello,
I was wondering if there's a way to negate a return value in report builder. Specifically, I have:
${if visited_sites | selected:"003"} ... ${/}
and I want to know if there is a way to return true when "003" is NOT selected. Should I use this same syntax and negate it somehow, or am I going about this in the wrong way?
Thanks 🙂
Solved! Go to Solution.
Try
${if !(visited_sites | selected:"003")} ... ${/}
That worked, thanks! I figured it would involve '!' somehow, but wasn't sure how to go about it. Is there documentation somewhere with the syntax for report builder? I typically just refer to the Quick Reference Guide, but it never mentions the ! operator.
This is the primary location for Feature Report info: Report templates
I find it a little ambiguous on a few topics, but it is my go-to for mostly everything to do with Feature Reports.