Hi,
I am trying to apply the follwing filter:
[ColA] != 0 and [Category] = "Other"
But I am trying to alter the Category filter to : Contains the word Other. Not filter strictly for Other.
Solved! Go to Solution.
You want the following,
[ColA] != 0 and contains([Category], "Other")
Thanks, do you know how to make it NOT contains?