Forum Discussion
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 would like to implement the same.
For eg: BD2 = BC2
BD3 = BC3 + BD2
BD4 = BC4 + BD3 and so on.
How can I implement that in PowerBI?
Any help is appreciated!
Thank you!
Megha
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
2 Replies
- amitchandak
Super User
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
- AnonymousNot applicable
Thank you so much! amitchandak