Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello,
I have two list of customer available in two different tables. How can I get the count of customer that are available in Table1 but not available in Table2?
Example below
Table1 | Table2 |
Customer | Cusomter |
Cus1 | Cus1 |
Cus2 | Cus1 |
Cus3 | Cus12 |
Cus4 | Cus12 |
Cus5 | |
Cus6 |
Solved! Go to Solution.
pls try this
Measure =
VAR tbl=ADDCOLUMNS('Table 1',"check",LOOKUPVALUE(Table2[Customer],Table2[Customer],'Table 1'[Customer]))
return COUNTROWS(FILTER(tbl,[check]=""))
Proud to be a Super User!
Hi @SamOvermars ,
Please try this measure:
Measure = COUNTROWS(DISTINCT(EXCEPT('Table1','Table2')))
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
Hi,
Write this calculated column formula in Table1
Available in Table2 = LOOKUPVALUE(Table2[Customer],Table2[Customer],Table1[Customer])
Write this measure
Measure = calculate(countrows(Table1),Table1[Available in Table2]=BLANK())
Hope this helps.
pls try this
Measure =
VAR tbl=ADDCOLUMNS('Table 1',"check",LOOKUPVALUE(Table2[Customer],Table2[Customer],'Table 1'[Customer]))
return COUNTROWS(FILTER(tbl,[check]=""))
Proud to be a Super User!
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
73 | |
71 | |
38 | |
29 | |
28 |
User | Count |
---|---|
99 | |
88 | |
62 | |
42 | |
39 |