Forum Discussion

powerbihelp87's avatar
5 years ago
Solved

If statement more than one table

I need help with multiple table If statement, I tried to give sample tables below.  If Column Code=100 then the new column should be XYZ else if the Column is Grp is 8fni then it should be ABC, the ...
  • selimovd's avatar
    selimovd
    5 years ago

    Hey powerbihelp87 ,

     

    yes, you can write it like that:

    DAX Help Column =
    SWITCH(
        TRUE(),
        'Table 1'[Code] = "100", "XYZ",
        RELATED( 'Table 2'[Grp] )
            IN {
            "8fni",
            "8vhi",
            "0kis"
        }, "ABC",
        "EFG"
    )

     

    By the way, always link someone in an answer like that: powerbihelp87 

    Otherwise I won't get a notification that you answered.

     

    If you need any help please let me know.
    If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
     
    Best regards
    Denis