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 first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
User | Count |
---|---|
89 | |
36 | |
35 | |
25 | |
19 |
User | Count |
---|---|
108 | |
48 | |
44 | |
32 | |
20 |