Every time I want to use the OR clause to filter for multiple conditions, the filter fails and everything is categorized as true.
This is an example of my OR clause written in the custom filter window. Please let me know if you can help!
[Resource.CurrentRank] = "Staff" OR "Senior" OR "Manager"
Solved! Go to Solution.
[Resource.CurrentRank] = "Staff" OR [Resource.CurrentRank] = "Senior" OR [Resource.CurrentRank] ="Manager"
Figured it out! I had to do this ^
Each clause of an expression needs to evaluate as True or False.
The expression you want is,
[Resource.CurrentRank] = "Staff" OR
[Resource.CurrentRank] = "Senior" OR
[Resource.CurrentRank] = "Manager"
You can also write,
[Resource.CurrentRank] IN ("Staff", "Senior", "Manager" )