Forum Discussion
Jamie_Hughes
7 years agoFrequent Visitor
Cumulative Count
Hi, I am new to Power BI and DAX and I was wondering if someone could help me. I have a table with duplicated names in a column, I would like a DAX formula to count the amount of times it see...
- 7 years ago
Hi Jamie_Hughes
To do this in DAX..you will need to add an Index Column from the Query Editor first.
Then you can use this Calculated Column
Instance_ = RANKX ( FILTER ( Table1, [Name] = EARLIER ( [Name] ) ), [Index],, ASC, DENSE )
Zubair_Muhammad
7 years agoCommunity Champion
Hi Jamie_Hughes
To do this in DAX..you will need to add an Index Column from the Query Editor first.
Then you can use this Calculated Column
Instance_ = RANKX ( FILTER ( Table1, [Name] = EARLIER ( [Name] ) ), [Index],, ASC, DENSE )
- Jamie_Hughes7 years agoFrequent Visitor