Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
mmurph16
New Member

Distinct Values

Hello!

 

we had a tricky issue with counting number of duplicate rows in our BI table, we are having a really tough time formulating a DAX code to generate differentiating repeating values. So basically what we want to do is for unique values to display "0" then for multiple repeating numbers, we want to integrate a count value. So if there are repeating values, we want the new row to give a them seperate value. Shown below in our "test" table in excel, the "count" column gives us a count of repeating number. Anyway anyone can help with implementing a formula that would work for us Power Bi?
mmurph16_0-1679596989732.png

Thanks

1 REPLY 1
Anonymous
Not applicable

I don't know how you'd do it in DAX, but in Power Query, you could first Group By Employee Number, use a Count aggregation (let's name it "RowCount" and an All Rows aggregation (let's name it "Details", and then add an Index (beginning at 1) to each of the nested tables, and subtracting 1 from each Index value where the count of rows is 1. So after the Group By step:


Table.TransformColumns(PriorStepOrTableName, "Details", each Table.AddIndexColumn(_, "Count", 1, 1), Int64.Type)

 

Now you can expand the column, but your single row value will be 1 instead of zero. So now you can go


Table.AddColumn(PriorStepOrTableName, "CorrectCount", each if [RowCount] = 1 then 0 else [Count])

 

--Nate

Good to go!

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.