Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago

Incremental CountIF DAX

I have a formula in excel that is =COUNTIF($P$2:$P2,P2) and have been looking around the forums for a replica in PBI but am having no luck.

 

Is anyone able to help me.. What the desired result is for example would be..

 

ID:                 Count:                          All i have been able to manage at the moment is this (which Is not helpful)

1                     1                                  1

2                     1                                  1

3                     1                                  3

3                     2                                  3

3                     3                                  3

4                     1                                  2

4                     2                                  2

5                     1                                  1

6                     1                                  1

 

Can someone please help out with this..

1 Reply

  • vbisen's avatar
    vbisen
    Frequent Visitor

    Hi
    You can add an Index column starting with 1 in your query. This will have unique value for each row.

    Post this create calculated measure as 

    Running Count =
    CALCULATE(
    COUNT('Table'[ID]),
    FILTER(All('Table'), 'Table'[Index]<=MAX('Table'[Index])),
    VALUES('Table'[ID])
    )