Forum Discussion
jimpatel
3 years agoPost Patron
DAX formula
Hi. Thanks for looking at my post. I am having 2 tables named as table 1 and table 2 but not related to each other. What i am looking for DAX formula for "Table 1" column B as shown below...
- 3 years ago
Hi jimpatel
Start from The Definitive Guide to DAX
tamerj1
3 years agoCommunity Champion
Sorry I did not understand. What do you mean by "if part number same"?
jimpatel
3 years agoPost Patron
Thanks for your reply.
In the above example, 123 have one "True" in the "Status" and therefore "Status 2" is true for 123.
23 does not have any true at all, therefore status 2 will be false for that
43 have two true and status 2 will be true for that
Hope this helps
Note: Part numbers wont be in the ascending or descending orders and it will be clustered around the rows.
Thanks a lot
- tamerj13 years agoCommunity Champion
Please try
Trur/False = IF ( ISEMPTY ( CALCULATETABLE ( 'Table', ALLEXCEPT ( 'Table', 'Table'[Part Number] ), Table2[True/False] = "TRUE" ) ), "FALSE", "TRUE" )- jimpatel3 years agoPost Patron
Thanks for your reply,
But i getting "Status 2" same as "Status" column for above formula
Like this