Forum Discussion
Jammer8888
9 years agoFrequent Visitor
Creating a cumulative column breaking on another column - help !
Hi, I am new to Power BI and I am looking for a very simple way to bring back the 'Cume' column (shown in the example below) into my dataset so I can filter on the Cume = '1' to get a unique v...
- 9 years ago
Hi, a way to solve this:
in Edit Query:
Add a Index Column --Close & Apply
After this:
Create a new column
Cume=RANKX(FILTER(Table1,Table1[Colour]=EARLIER(Table1[Colour])),Table1[Index],,ASC)
Regards
Victor
Lima - Peru
Vvelarde
9 years agoCommunity Champion
Hi, a way to solve this:
in Edit Query:
Add a Index Column --Close & Apply
After this:
Create a new column
Cume=RANKX(FILTER(Table1,Table1[Colour]=EARLIER(Table1[Colour])),Table1[Index],,ASC)
Regards
Victor
Lima - Peru
- Jammer88889 years agoFrequent Visitor
That is great Victor - a simple and elegant solution. Thank you very much for your help on this.
Chris.