Forum Discussion
William_Moreno
Helper II
6 years agocount adding one to each count made
Hi everyone, I have a table with the order code, as you see below, the code appears 3 times, I woud like to create a column to count without repeating the number "3", but count adding one to each co...
- Anonymous6 years ago
Hi William_Moreno ,
One way would be
Create an index Column in Power Query.
Then create a Calculated Column
Correct Count Column = RANKX(FILTER('Table','Table'[order-number] = EARLIER('Table'[order-number])),'Table'[Index],,ASC,Dense)Regards,
Harsh Nathani
Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)
Anonymous
6 years agoNot applicable
Hi William_Moreno ,
One way would be
Create an index Column in Power Query.
Then create a Calculated Column
Correct Count Column = RANKX(FILTER('Table','Table'[order-number] = EARLIER('Table'[order-number])),'Table'[Index],,ASC,Dense)
Regards,
Harsh Nathani
Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)