Forum Discussion
damomac85
9 years agoFrequent Visitor
Cumulative formula issue
I have a budget , an actuals and a date table which i am using to show a monthly Cumulative line chart for monthly budget vs actual data. i have added the the follwing measure for a budget Cumula...
- 9 years ago
Please try with following measure formula.
Cumulative Net = CALCULATE ( SUM ( 'tbFactProspectWon'[NetPrice] ), FILTER ( ALL ( 'Date' ), 'Date'[Month] <= MAX ( 'Date'[Month] ) ) )Best Regards,
Herbert
v-haibl-msft
9 years agoMicrosoft Employee
Please try with following measure formula.
Cumulative Net =
CALCULATE (
SUM ( 'tbFactProspectWon'[NetPrice] ),
FILTER ( ALL ( 'Date' ), 'Date'[Month] <= MAX ( 'Date'[Month] ) )
)
Best Regards,
Herbert
damomac85
9 years agoFrequent Visitor
great thanks v-haibl-msft