Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi,
New to DAX and pretty new to PowerBI.
I would like to write a DAX expression that displays rows when two string values are met in a column:
I tried creating a new table and using a filter expression but then I can only get one condition added:
Solved! Go to Solution.
Hi @Nikolaikruger
You can use something like
Test =
FILTER (
Dim_ProjectFilter,
Dim_ProjectFilter[Activity] IN { "String1", "String2" }
)
Hi @Nikolaikruger
You can use something like
Test =
FILTER (
Dim_ProjectFilter,
Dim_ProjectFilter[Activity] IN { "String1", "String2" }
)
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
24 | |
19 | |
14 | |
10 | |
7 |