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.
Good day!
I have sample here , how I can get the numbers in group 1 that is not in group 2 using dax.
thanks in advance!
~Ran
Solved! Go to Solution.
Create a new Table ( Go to Modeling > New Table )
Write DAX:
Table1_NotIN_Table2 =
EXCEPT(
VALUES('Table 1'[Column1]),
VALUES('Table 2'[Column2])
)
This will generate a new table showing all numbers that are in Group 1 but not in Group 2.
If this helped, a Kudos 👍 or Solution mark would be great! 🎉
Cheers,
Kedar
Connect on LinkedIn
Create a new Table ( Go to Modeling > New Table )
Write DAX:
Table1_NotIN_Table2 =
EXCEPT(
VALUES('Table 1'[Column1]),
VALUES('Table 2'[Column2])
)
This will generate a new table showing all numbers that are in Group 1 but not in Group 2.
If this helped, a Kudos 👍 or Solution mark would be great! 🎉
Cheers,
Kedar
Connect on LinkedIn
User | Count |
---|---|
77 | |
76 | |
45 | |
31 | |
27 |
User | Count |
---|---|
98 | |
89 | |
52 | |
48 | |
46 |