Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello
I want to check that Table1[Col1]=Table2[Col2] or some other condition and I want to display the output of this check to a Card visual showing TRUE or FALSE.
I suppose one way is to create a column to check this condition, return 0 or 1 for TRUE/FALSE and then if the total is >0, there the card should show FALSE.
Would that be the most efficient way?
Thanks!
Solved! Go to Solution.
@Anonymous, You can try this
Measure = IF(
AND(HASONEVALUE('Table (3)'[Col1]),HASONEVALUE('Table (3)'[Col2])),
IF(VALUES('Table (3)'[Col1]) = VALUES('Table (3)'[Col2]),
TRUE(),
FALSE()
),
"NA"
)
@Anonymous, Are the col1 and 2 aggregatable? if yes, you can create a measure to do this?
share sample data and expected results.
@Anonymous, You can try this
Measure = IF(
AND(HASONEVALUE('Table (3)'[Col1]),HASONEVALUE('Table (3)'[Col2])),
IF(VALUES('Table (3)'[Col1]) = VALUES('Table (3)'[Col2]),
TRUE(),
FALSE()
),
"NA"
)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 104 | |
| 82 | |
| 71 | |
| 50 | |
| 46 |