- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Displaying a measure total that ignores date slicer
I'm trying to use a measure to calc a total budget for the year to use in a gauge. my formula is:
BudgetTotal = CALCULATE(sum('2017FinancialData'[Total]),'2017FinancialData'[type] = "Budget",All('2017FinancialData'[Total]))
I have a date slicer on the report that allows a user to select a date range...however, it is converting the measure to a YTD value instead of a Total for the Year. How do I have this measure ignore the date slicer that I have on the report?
Thanks!
Jeff
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
It's just general "best practices" to have a separate calendar table, and power bi helps you via CALENDARAUTO( ) function if you don't have one easily. The idea is that you want a calendar w/ no "gaps" (missing days) ... and also fewer rows than would typically be in your large fact table.
Ignoring that if you want... I would expect something more like:
BudgetTotal = CALCULATE(sum('2017FinancialData'[Total]),'2017FinancialData'[type] = "Budget",All('2017FinancialData'[DateField]))
But you need to keep it in the same year, so you would need a year column in your table and add it to your All as AllExcept or add another param to calculate that is VALUES(MyTable[Year]).

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Typically, you would have a separate data/calendar table, and that is where the slicer would come from... AND... where the dax measure should filter.
Your final ALL( ) looks a bit weird to me, I would expect something clearing some date fields instead.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Yeah...the All() was just an attempt to get the total.
The data table has both budget and actual rows that includes a column for the date that each row is for. I'm don't see how I could separate the date from that table?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
It's just general "best practices" to have a separate calendar table, and power bi helps you via CALENDARAUTO( ) function if you don't have one easily. The idea is that you want a calendar w/ no "gaps" (missing days) ... and also fewer rows than would typically be in your large fact table.
Ignoring that if you want... I would expect something more like:
BudgetTotal = CALCULATE(sum('2017FinancialData'[Total]),'2017FinancialData'[type] = "Budget",All('2017FinancialData'[DateField]))
But you need to keep it in the same year, so you would need a year column in your table and add it to your All as AllExcept or add another param to calculate that is VALUES(MyTable[Year]).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you!

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
03-11-2024 11:00 AM | |||
02-08-2023 12:36 AM | |||
01-24-2024 10:31 AM | |||
04-29-2024 09:43 AM | |||
09-12-2022 06:27 AM |
User | Count |
---|---|
131 | |
104 | |
85 | |
55 | |
46 |