The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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 |
---|---|
15 | |
12 | |
8 | |
7 | |
7 |
User | Count |
---|---|
24 | |
21 | |
12 | |
10 | |
7 |