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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount 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
User | Count |
---|---|
15 | |
11 | |
6 | |
6 | |
5 |
User | Count |
---|---|
29 | |
17 | |
11 | |
7 | |
5 |