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
naivecalf
7 years agoHelper III
Hi Ashish_Mathur ,
please see attached file.
I have a serial list, need to count all column as total amount, and then count column by Type as amount. want to create a P-chart for percentage. Accumulated amount/Total amount.
Listed a sample.
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])
- naivecalf7 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