Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello,
Could you please help to get DAX formula to get Unique count between two tables.
PBIX: PBIX Sample
Formula:
Regards,
Chandrashekar B
Solved! Go to Solution.
@Chandrashekar
You can use
Count Available in Both =
COUNTROWS (
FILTER (
INTERSECT (
VALUES ( Table1[Number] ),
VALUES ( Table2[Number2] )
),
NOT ISBLANK ( [Number] )
)
)Hello,
Could you please help to get DAX formula to get Unique count between two tables.
PBIX: PBIX Sample
Formula:
Regards,
Chandrashekar B
Hi Chandra,
What exactly are you trying to count?
Hello,
am trying to count Number ticket(Table1) present in Table2.
Kindly note Table2 may have Number which is not present in Table1.
Regards,
Chandrashekar B
@Chandrashekar
You can use
Count Available in Both =
COUNTROWS (
FILTER (
INTERSECT (
VALUES ( Table1[Number] ),
VALUES ( Table2[Number2] )
),
NOT ISBLANK ( [Number] )
)
)Hello,
Thank you. It is working fine.
Regards,
Chandrashekar B
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 17 | |
| 8 | |
| 8 | |
| 7 |