Forum Discussion
Anonymous
4 years agoNot applicable
DAX
Hi All, I have attached some screenshots and doinf that is straight forward in excel but can I know how to implement that in PowerBI? As shown in the above screenshots, I...
- 4 years ago
Anonymous ,Add an index column in power query then create a measure or column
Column = sumx(filter(Table, [index] <= earlier([Index]) ), [EUD] *[RM Cost])
measure
Column = sumx(filter(allselected(Table), [index] <= max([Index]) ), [EUD] *[RM Cost])
https://stackoverflow.com/questions/45715963/creating-an-index-column-for-power-bi
amitchandak
Super User
4 years agoAnonymous ,Add an index column in power query then create a measure or column
Column = sumx(filter(Table, [index] <= earlier([Index]) ), [EUD] *[RM Cost])
measure
Column = sumx(filter(allselected(Table), [index] <= max([Index]) ), [EUD] *[RM Cost])
https://stackoverflow.com/questions/45715963/creating-an-index-column-for-power-bi
Anonymous
4 years agoNot applicable
Thank you so much! amitchandak