Forum Discussion
jimpatel
Post Patron
3 years agoDAX 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
Community Champion
3 years agoPlease try
Trur/False =
IF (
ISEMPTY (
CALCULATETABLE (
'Table',
ALLEXCEPT ( 'Table', 'Table'[Part Number] ),
Table2[True/False] = "TRUE"
)
),
"FALSE",
"TRUE"
)jimpatel
Post Patron
3 years agoThanks for your reply,
But i getting "Status 2" same as "Status" column for above formula
Like this
- tamerj13 years ago
Community Champion
Please try
Status2 = IF ( ISEMPTY ( FILTER ( CALCULATETABLE ( 'Table', ALLEXCEPT ( 'Table', 'Table'[Part Number] ) ), 'Table'[Status] = "TRUE" ) ), "FALSE", "TRUE" )- jimpatel3 years ago
Post Patron
This is really unbelievable work. Thanks a lot for your time. Can you please point me where i can learn these kind of formulas please?
Thanks a lot again
- tamerj13 years ago
Community Champion
Hi jimpatel
Start from The Definitive Guide to DAX