Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Refresh fails with message "Column 'Restart Cause' in Table 'new_sort' contains a duplicate value [redacted for company privacy reasons] and this is not allowed for columns on the one side of a many-to-one relationship or for columns that are used as the primary key of a table."
But this shouldn't be possible, because the Restart Cause column is the result of a Group By:
= Table.Group(Source, {"Restart Cause"}, {{"Count", each Table.RowCount(_), Int64.Type}})
By definition, Group By's should result in no duplications. As a workaround to this odd Power BI behavior, I added another step to remove duplicates, even there shouldn't be any:
= Table.AddIndexColumn(#"Removed Duplicates", "Order", 1, 1, Int64.Type)
= Table.Distinct(#"Sorted Rows", {"Restart Cause"})
Even after that I'm still getting the error during apply or refresh!
Full steps in case it's relevant:
= Table.Group(Source, {"Restart Cause"}, {{"Count", each Table.RowCount(_), Int64.Type}})
= Table.Sort(#"Grouped Rows",{{"Count", Order.Descending}})
= Table.Distinct(#"Sorted Rows", {"Restart Cause"})
= Table.AddIndexColumn(#"Removed Duplicates", "Order", 1, 1, Int64.Type)
EDIT: copy/pasted the wrong step.
Solved! Go to Solution.
Not sure if this applies here but when I see issues like this it is because M is case sensitive while DAX is not. If you use UPPER or lower case of the column before you group, you will be sure to get rid of duplicates.
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Not sure if this applies here but when I see issues like this it is because M is case sensitive while DAX is not. If you use UPPER or lower case of the column before you group, you will be sure to get rid of duplicates.
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Thank you mahoneypat! I didn't realize that DAX is case-insensitive.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.