I'm trying to modify a formula in my dashboard that currently uses multiple fields as filters inside an RSUM() aggregation. My goal is to apply OR logic across these fields rather than the default AND logic imposed by comma separation.
Here is the original formula:
RSUM([# of unique INCIDENT_ID],
[activity type],
[activity type1],
[activity type2],
[activity comment],
[activity comment1],
[_NUMBER],
[_NUMBER1],
[activity type3],
[time to resolve (mins)],
[ASSIGNED_TO])
As I understand, the commas between the fields act as AND conditions. I attempted to change the commas to use OR, but received a syntax error.
I want to apply OR conditions across these fields, so that if any one of them meets a specific value or condition, the row will be included in the aggregation.