March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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!
User | Count |
---|---|
120 | |
77 | |
58 | |
52 | |
46 |
User | Count |
---|---|
171 | |
117 | |
63 | |
57 | |
51 |