Forum Discussion
naivecalf
7 years agoHelper III
Min function only accepts a column accepts a column reference as the argument number 1
Hi, Tried to use sumx for running total with measure field, but get error, Accu Percentage = sumx( FILTER( ALL(Query1), [Amount] >= MIN([Amount])), [Percentage])
- 7 years ago
v-frfei-msft
7 years agoCommunity Support
Hi naivecalf ,
We can create meausres as below.
Total amount = CALCULATE(COUNTA('Table'[Item]),ALLSELECTED('Table'))
Amount = CALCULATE(COUNTA('Table'[Item]))
Percentage = DIVIDE([Amount],[Total amount])
naivecalf
7 years agoHelper III
I already created those measures. now I need to create a new measure or column for Cumulative amount or cumulative percentage.
Regards
Steven