Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Dear All,
i was checking for same issues, since related table questions came up a lot but couldnt find something applicable to mine.
So if you could take a look, that would be very helpful!
I have 2 tables with Product ID's.
One is coming from SAP auto created (Main Table) and the other one is manually selected ID's by program which are exempted (based on the auto created ID's).
My issue now is, how do i create the DAX to only count ID's from 1st table if they are not matching ID's from 2nd.
Best regards
Matthias
Solved! Go to Solution.
Hi @baneworth
It is better to provide some sample data in a format which people can copy, you have distinct values in ID column in both tables? When you said matching, is there a rule or simple they are the same? You only need to count how many IDs, distinct count? In general, you can do something like this
TEST =
VAR T1= ADDCOLUMNS(VALUES(Table1[ID]),"CHECK",CONTAINS(VALUES(Table2[ID]),Table2[ID],Table1[ID]))
RETURN
COUNTROWS(FILTER(T1,[CHECK]=FALSE()))
Hi @baneworth ,
Based on your description, do you want to count the mismatched ID when the ID in Table 1 do not match the selected ID?
If I understand correctly, please create the following measure:
Measure = CALCULATE(DISTINCTCOUNT('Table'[ID]),FILTER(ALL('Table'),NOT('Table'[ID] in VALUES('Table (2)'[ID]))))
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @baneworth
It is better to provide some sample data in a format which people can copy, you have distinct values in ID column in both tables? When you said matching, is there a rule or simple they are the same? You only need to count how many IDs, distinct count? In general, you can do something like this
TEST =
VAR T1= ADDCOLUMNS(VALUES(Table1[ID]),"CHECK",CONTAINS(VALUES(Table2[ID]),Table2[ID],Table1[ID]))
RETURN
COUNTROWS(FILTER(T1,[CHECK]=FALSE()))
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
87 | |
87 | |
81 | |
64 | |
49 |
User | Count |
---|---|
121 | |
109 | |
81 | |
67 | |
67 |