Forum Discussion
powerbihelp87
5 years agoHelper V
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 ...
- 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 regardsDenisBlog: WhatTheFact.biFollow me: twitter.com/DenSelimovic
selimovd
5 years agoMost 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