Forum Discussion
Joe_100
Helper I
7 years agoSlicer selection measure for dynamic calculation
Hi all, Please see below the following example: I have a slicer on column period (a month has two periods in this case). If i make a selection on a period i need to see the sales for that spe...
- 7 years ago
May be a MEASURE like this for Budget
Budget Sum = VAR myperiod = SELECTEDVALUE ( Table1[Month ] ) RETURN CALCULATE ( SUM ( Table1[Budget] ), Table1[Month ] = myperiod, ALL ( Table1[Period] ) )
Zubair_Muhammad
Community Champion
7 years ago
May be a MEASURE like this for Budget
Budget Sum =
VAR myperiod =
SELECTEDVALUE ( Table1[Month ] )
RETURN
CALCULATE (
SUM ( Table1[Budget] ),
Table1[Month ] = myperiod,
ALL ( Table1[Period] )
)