The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 |
---|---|
16 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
26 | |
13 | |
12 | |
8 | |
8 |