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 specific period only, but i need the budget number over the two periods (month) combined.Somehow i need to filter the budget on a month number based on my first selection.
So in this case i should see the sales: 14 budget: 35
| Period | Sales | Budget | Month | Year |
| 012018P1 | 10 | 15 | 1 | 2018 |
| 012018P2 | 15 | 20 | 1 | 2018 |
| 022018P1 | 14 | 22 | 2 | 2018 |
| 022018P2 | 14 | 13 | 2 | 2018 |
| 032018P1 | 13 | 15 | 3 | 2018 |
| 032018P2 | 21 | 15 | 3 | 2018 |
| 042018P1 | 11 | 10 | 4 | 2018 |
| 042018P2 | 19 | 20 | 4 | 2018 |
Is it possible to achieve this with a dax formule after i have filtered the dataset based on one period?
Thanks!
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] ) )
1 Reply
- Zubair_Muhammad
Community Champion
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] ) )