Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Sign up nowGet Fabric certified for FREE! Don't miss your chance! Learn more
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" }
)
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 4 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 13 | |
| 9 | |
| 9 | |
| 7 | |
| 5 |