Hey everyone! Ran into a little issue with managing row-filter on slices.
For context, I have a list of clients on a table grouped by Priority (High, Medium, Low, and Archive). So far I’ve had success with using row filter on slices for filtering a single Priority enum, but having difficulty with trying to use Row Filter for two or more enums of the Priority. For example:
- [Priority] = “Archive (Paid/Closed Accounts)” → works like a charm when only one enum of the Priority is being selected.
Now I’ve tried to do the same function, but with multiple enums for example:
- [Priority] = “Low Priority”, “Archive (Paid/Closed Accounts)”
- AND([Priority] = “High Priority (Program Uploads)”, [Priority] = “Medium Priority”
And unfortunately, these have not worked out. I have double-checked to make sure the slice has the appropriate columns selected to be seen on the Slice View, but when I enter these functions my table is completely blank. Any ideas?