Forum Discussion
sjpbi
2 years agoFrequent Visitor
How to create column that counts the specific duplicate entry in the table
Hi, need help on How to create column that counts the specific duplicate entry in the table? Here's my sample data table ID RequestID 013D 34567 023S 56789 056F 98765 013R 34...
- Anonymous2 years ago
Hi sjpbi ,
Please follow these steps:
1.In Power Query -- add Column – Index Column – From 1.
the results are shown below.
2.Create a calculated column and write the following expression.
Count Column = COUNTROWS(FILTER('Table','Table'[RequestID] = EARLIER('Table'[RequestID]) && 'Table'[Index] <= EARLIER('Table'[Index])))3.The final result is shown below.
If you don't want the index column to appear in the report, you can hide it by clicking on the small eye to its right.
If your Current Period does not refer to this, please clarify in a follow-up reply.
Best Regards,
Clara Gong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Ashish_Mathur
Super User
2 years agoHi,
It is fairly easy to do this in the Query Editor. If you are OK with using the Query Editor, then post back.