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
Hi, I have "TABLE 1" where I have duplicate records, the issue is that while summarizing for getting unique records, as someone missepelled the name, I am getting two records for a single ID, as in case of ID 8 on my "Current Result" Table, this is incorrect.
The ideal would be to have something like the "DESIRED RESULT" table.
I need to used DAX as I do not have access to the data source for doing this from the Query.
DAX I am currently using, which is not working is:
RESULT =
SUMMARIZE(
'TABLE1',
'TABLE1'[ID],
'TABLE1'[NAME]
)
Solved! Go to Solution.
Thanks @Zubair_Muhammad , although your DAX proposal was not 100% of what I needed it guide me through to get the right result, DAX can be found below.
RESULT =
FILTER (
'TABLE1',
'TABLE1'[DATE]
= CALCULATE (
MAX ( 'TABLE1'[DATE] ),
ALLEXCEPT ( TABLE1, 'TABLE1'[ID] )
)
)This was because the "ID" is the column that contained all the right ID's, no typos.
Hi @Oscar_Mtz_V
Try following
RESULT =
FILTER (
'TABLE1',
'TABLE1'[DATE]
= CALCULATE (
MAX ( 'TABLE1'[DATE] ),
ALLEXCEPT ( TABLE1, 'TABLE1'[NAME], 'TABLE1'[ID] )
)
)
Thanks @Zubair_Muhammad , although your DAX proposal was not 100% of what I needed it guide me through to get the right result, DAX can be found below.
RESULT =
FILTER (
'TABLE1',
'TABLE1'[DATE]
= CALCULATE (
MAX ( 'TABLE1'[DATE] ),
ALLEXCEPT ( TABLE1, 'TABLE1'[ID] )
)
)This was because the "ID" is the column that contained all the right ID's, no typos.
This is just I need, thanks.
Hey guys,
I believe i have the same issue, but i got this message...
My measure is:
Any ideas?
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.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 5 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 16 | |
| 8 | |
| 7 | |
| 7 |