The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hi,
Can anyone give me a hint how I can create a measure that I can use in a matrix visual that only will respond to the year in the date slicer.
Case:
I have a matrix that displays the actuals, YTD actuals, Budget and Budget YTD of a selected period (months or quaters)
See example below
I want to add a measure in the matrix that will dispay the total year budget of the selected year in the period.
I tried to create a measure that only will respond to the year of the selected period.
Is there a way to create a measure that only wil respond / calculate based on the year and not the quater.
Solved! Go to Solution.
Try this measure. It clears filters on the Calendar table, while retaining the Year filter.
Total Budget =
CALCULATE (
SUM ( pbi_budgets[Data.pbi_budget] ),
ALL ( 'Calendar' ),
VALUES ( 'Calendar'[Year] )
)
Proud to be a Super User!
Thank you very much for the solution.😀
Try this measure. It clears filters on the Calendar table, while retaining the Year filter.
Total Budget =
CALCULATE (
SUM ( pbi_budgets[Data.pbi_budget] ),
ALL ( 'Calendar' ),
VALUES ( 'Calendar'[Year] )
)
Proud to be a Super User!
User | Count |
---|---|
58 | |
56 | |
55 | |
50 | |
32 |
User | Count |
---|---|
172 | |
89 | |
70 | |
46 | |
45 |