Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hi Team ,
Need Help
I am looking for the Dax column formula, where I have 3 work types and 2 products:
Product A : It should pull all the rows
For Product B :
Feature - It should pull all the rows
Bug Fix - It should pull all the rows
For Enhancement - It should pull only the rows which as "a11y" anywhere in the description column.
Many thanks
Solved! Go to Solution.
Required_Output_Column =
SWITCH(
TRUE(),
'Table'[Product] = "A", "Y",
'Table'[Work Type] IN {"Feature", "Bug Fix" }, "Y",
SEARCH("a11y", 'Table'[Description], 1, 0 ) >=1 , "Y",
"N"
)
Required_Output_Column =
SWITCH(
TRUE(),
'Table'[Product] = "A", "Y",
'Table'[Work Type] IN {"Feature", "Bug Fix" }, "Y",
SEARCH("a11y", 'Table'[Description], 1, 0 ) >=1 , "Y",
"N"
)
Vote for your favorite vizzies from the Power BI World Championship submissions!
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 |
|---|---|
| 7 | |
| 6 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 19 | |
| 10 | |
| 10 | |
| 6 | |
| 6 |