Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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!
Solved! Go to Solution.
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] ) )
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] ) )
User | Count |
---|---|
98 | |
76 | |
75 | |
49 | |
27 |