The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 |
---|---|
82 | |
80 | |
35 | |
32 | |
32 |
User | Count |
---|---|
93 | |
79 | |
62 | |
54 | |
51 |