Forum Discussion

sjpbi's avatar
sjpbi
Frequent Visitor
2 years ago
Solved

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

IDRequestID
013D34567
023S56789
056F98765
013R34567
098T98765
067H67843

 

 

Need to have this count column in pbi dax referencing from request id and id to count the first entry as 1

IDRequestIDCount
013D345671
023S567891
056F987651
013R345672
098T987652
067H678431
  • Anonymous's avatar
    Anonymous
    2 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.

     

4 Replies

  • sjpbi , Try with new Dense Rank function in a measure

     

    Date would be a better option for order by, you can use if ([New Rank Desne]>= 2, 2,1)

     

    New Rank Desne = rank(DENSE,ALLSELECTED(Table[ID],Table[RequestID]),ORDERBY(Table[RequestID],asc),, partitionBy(Table[ID]) )

     

     

  • Hi,

    It is fairly easy to do this in the Query Editor.  If you are OK with using the Query Editor, then post back.

  • Anonymous's avatar
    Anonymous
    Not applicable

    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.