I am trying to set up an "OR" condition on a select multiple question in my feature reports. I've tried the following with no luck, where am I going wrong? The help falls short here with a very brief mention of the parameters but no syntax examples.
${if inv_inspection_locations | selected:"WaterMain" || "CurbStop" || "Meter"}
${if inv_inspection_locations | selected:"WaterMain" || selected:"CurbStop" || selected:"Meter"}
${if inv_inspection_locations | selected:"WaterMain" || inv_inspection_locations | selected:"CurbStop" || inv_inspection_locations | selected:"Meter"}
Hi Rob,
Try enclosing each condition in parentheses:
${if (inv_inspection_locations | selected:"WaterMain") || (inv_inspection_locations | selected:"CurbStop") || (inv_inspection_locations | selected:"Meter")}
-Barbara