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 rest are EFG

 

Table 1:

CodeSalesDAX HELP!
100190 
10293 
10989 
20093 
2909 
10039 
10089 
20099 
10020 
290289 
10298 
10978 
200398 
10292 
10083 
109109 

 

Table 2:

keyGrp
a0so
b0dk0
c0kis
d8vhi
e8fni
f8hf8
  • 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
     

     

6 Replies

  • powerbihelp87 not really clear what you are looking for? How these tables are connected? What is your expected output give the logic you explained. The most critical part is how these tables are connected.

     

     

    • powerbihelp87's avatar
      powerbihelp87
      Icon for Helper V rankHelper V

      selimovd  parry2k I was missing the Code column in the example Table 2 to show they are related, I was able to figure out the formula I needed below. It works fine.  I am trying to see how to write multiple options if the IF Related portion of the formula.

            

       DAX Help Column  =IF(Table 1[Code]="100", "XYZ",IF(RELATED(Table 2[Grp]="8fni","ABC","EFG" ))

      • selimovd's avatar
        selimovd
        Icon for Most Valuable Professional rankMost Valuable Professional

        Hey powerbihelp87 ,

         

        sure, next time just give more details.

        You can make it more readable with a SWITCH/TRUE:

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

         

        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
         
  • selimovd's avatar
    selimovd
    Icon for Most Valuable Professional rankMost Valuable Professional

    Hey powerbihelp87 ,

     

    logically it doesn't really make sense.

    A calculated column always has to be in a specific table.

     

    You are asking to put "XYZ" when a column from Table 1 has a value and "ABC" when the column of another table is a specific value. How are they connected?

    Please explain a little better.

     

    Best regards

    Denis