Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
I have duplicated ID. I want to count the duplicate value for 1st ID= 1, 2nd ID= 2, 3rd ID =3 in power query. how to count for this.
Solved! Go to Solution.
g = Table.Group(Source, {"Code"}, {{"rows", each Table.AddIndexColumn(_, "UniquedCount", 1, 1)}}),
z = Table.Combine(g[rows])
g = Table.Group(Source, {"Code"}, {{"rows", each Table.AddIndexColumn(_, "UniquedCount", 1, 1)}}),
z = Table.Combine(g[rows])