Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.