Forum Discussion
Anonymous
3 years agoNot applicable
Power BI - Cumulative Sum over Time using Parameter Inputs Only
Hi I am trying to draw a line on my Power BI visual that shows the inputs of a parameter, and the cumulate/sum of these results over time. The example is; if I complete 10 tasks a day, how many task...
- 3 years ago
Anonymous try somethign like this:
Measure = CALCULATE ( COUNTROWS ( 'Calendar' ), FILTER ( ALLSELECTED ( 'Calendar'[Date] ), 'Calendar'[Date] <= MAX ( 'Calendar'[Date] ) ) ) * [Task Parameter Value]
parry2k
Super User
3 years agoAnonymous try somethign like this:
Measure =
CALCULATE (
COUNTROWS ( 'Calendar' ),
FILTER (
ALLSELECTED ( 'Calendar'[Date] ),
'Calendar'[Date] <= MAX ( 'Calendar'[Date] )
)
) * [Task Parameter Value]