Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
ghermann
Contributor II
Contributor II

I want a filter "higher prioritized" than a SetExpression

Hello,
Let's say I have imported the following data:

ValueGroup
abcA

def

B
ghiB
jklC
mnoB

Now I have a simple set expression:
      Count ({$<group={"B"'}>} distinct Values)
This correctly returns "3". But if I set a filter like "Group" = "A" in a dashboard, I would expect "0" as a result. However, it remains at "3". How can I get a filter "higher prioritized" than the SetExpression?


Br

George

Labels (1)
1 Solution

Accepted Solutions
sunny_talwar

Try this:

Count ({$<group *= {"B"'}>} distinct Values)


Implicit Set Operators

View solution in original post

2 Replies
sunny_talwar

Try this:

Count ({$<group *= {"B"'}>} distinct Values)


Implicit Set Operators

ghermann
Contributor II
Contributor II
Author

Great, that's it!