Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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 |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
19 | |
14 | |
8 | |
7 |