Forum Discussion

itsranga's avatar
itsranga
Helper I
3 years ago
Solved

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({"Project","Small Project"},[Type])
and (List.Contains({"Human Resources","Materials Management","Quote to Cash","Super Users Supply Chain","Supply Chain"},[Owner])
or List.Contains ({"Quote to Cash"},[Function])
or List.Contains ({"Commodity Planning","Corrections","Customer Service","Human Resources","Master Scheduling","Order Change Specialists","Production Planning","Purchasing"},[Business])) then "X"
else ""

 

 

 

 

I tried to achieve the same thing in the Calculated column but was unable, how do I fix it?

 

Thanks,

  • 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",
        ""
      )

1 Reply

  • Greg_Deckler's avatar
    Greg_Deckler
    Community 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",
        ""
      )