Forum Discussion
itsranga
3 years agoHelper I
Need Help with DAX
Hello All, I need Help with DAX, in M-Code i achieved but i try to Create Calculated Column but its not working Custom Column in Power Query Editor Test = if
List.Contains({"Proj...
- 3 years ago
itsranga Try:
Column = IF( ( [Type] IN {"Project", "Small Project"} && [Owner] IN {"Human Resources", "Materials Management", "Quote to Cash", "Super Users Supply Chain", "Supply Chain"} ) || [Function] IN { "Quote to Cash" } || [Business] IN { "Commodity Planning","Corrections","Customer Service","Human Resources","Master Scheduling","Order Change Specialists","Production Planning","Purchasing"}, "X", "" )
Greg_Deckler
3 years agoCommunity Champion
itsranga Try:
Column =
IF(
(
[Type] IN {"Project", "Small Project"} &&
[Owner] IN {"Human Resources", "Materials Management", "Quote to Cash", "Super Users Supply Chain", "Supply Chain"}
) ||
[Function] IN { "Quote to Cash" } ||
[Business] IN { "Commodity Planning","Corrections","Customer Service","Human Resources","Master Scheduling","Order Change Specialists","Production Planning","Purchasing"},
"X",
""
)