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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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"
)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 19 | |
| 13 | |
| 10 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 31 | |
| 28 | |
| 19 | |
| 11 | |
| 10 |