I'm filtering a repeat in a report template like so, works great.
${#issues | where:"issue_resolved='Yes'"}
- ${rpt_issue_info_resolved}
${/}
Is there a way to add a condition to that filtered repeat, that depends on the count of the filtered records?
Something like this:
${if (issues | where:"issue_resolved='No'" | getValue: "count") > 0}
${#issues}
- ${rpt_issue_info_unresolved}
${/}${/}
I keep getting invalid expression...
thanks!