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
Hi jimpatel
is the true/false column from table 2 a text or boolean data type?
Trur/False =
IF (
ISEMPTY (
FILTER (
Table2,
Table2[Part Number] = Table1[Part Number]
&& Table2[True/False] = "TRUE"
)
),
"FALSE",
"TRUE"
)jimpatel
3 years agoPost Patron
Amazing work. Thanks a lot. This helping me to remove the barrier.
Thanks again