Forum Discussion
How to use filter with multiple values in DAX?
- 9 years agoMy fault you have to use curly braces {...} instead of (...)
Regards
Thank you for this answer - specifically related to using "in ("value", "value", "value", . . .)".
I was struggling to find an alternative to using || and "or"
I did notice in my query I needed to modify the syntax by using a curly bracket because the system would not accept the parentheses:
4_Stage_Count = CALCULATE(COUNT(Opportunities[AccountId]),Opportunities[Stage] in {"Closed Won", "Closed Lost"})
Let me know if anyone knows why the () had to be replaced by the {}.
Hey,
basically my first post contains a typo (I have been in a hurry).
IN
searches in column-table,
The most simple form to define a table with just one column is to use {"curly", "braces"}. This little example creates a table with on column and two rows. Pleas be aware that the table is defined w/o a table name and w/o a name for the column.
I will edit my post immediately.
Regards
Tom