Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

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 1
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])
)Running Count.png

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.