March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I am attempting to use the filter such that the filter selection represents the current month and next month will represent the month after. Any suggestions? I have looked through the DAX functions with no ideas on how to accomplish this.
Solved! Go to Solution.
Hi @cthurston,
If I understand you correctly, you should be able to follow steps below to get your expected result.
1. Create an individual Calendar table if you don't have one yet. And make sure there is no relationship between your fact table and the Calendar table.
CalendarTable = CALENDARAUTO()
Year = YEAR(CalendarTable[Date])
Month = MONTH(CalendarTable[Date])
2. Use the formula below to create two measures to indicate if the date from fact table is current selected month or next month.
IsCurrentMonth = var aa= MAX ( CalendarTable[Year] ) return IF ( YEAR ( MAX ( Sales[Date] ) ) = MAX ( CalendarTable[Year] ) && MONTH ( MAX ( Sales[Date] ) ) = MAX ( CalendarTable[Month] ), 1, 0 )
IsNextMonth = VAR currentSelectedMonth = MAX ( CalendarTable[Month] ) VAR currentSelectedYear = MAX ( CalendarTable[Year] ) VAR NextMonthSelected = IF ( currentSelectedMonth = 12, 1, currentSelectedMonth + 1 ) VAR nextYearSelected = IF ( currentSelectedMonth = 12, currentSelectedYear + 1, currentSelectedYear ) RETURN IF ( YEAR ( MAX ( Sales[Date] ) ) = nextYearSelected && MONTH ( MAX ( Sales[Date] ) ) = NextMonthSelected, 1, 0 )
Note: Replace "Sales" your fact table name.
3. Use the measures as visual level filter(IsNextMonth is 1) to get the corresponding result.
Regards
Hi @cthurston,
If I understand you correctly, you should be able to follow steps below to get your expected result.
1. Create an individual Calendar table if you don't have one yet. And make sure there is no relationship between your fact table and the Calendar table.
CalendarTable = CALENDARAUTO()
Year = YEAR(CalendarTable[Date])
Month = MONTH(CalendarTable[Date])
2. Use the formula below to create two measures to indicate if the date from fact table is current selected month or next month.
IsCurrentMonth = var aa= MAX ( CalendarTable[Year] ) return IF ( YEAR ( MAX ( Sales[Date] ) ) = MAX ( CalendarTable[Year] ) && MONTH ( MAX ( Sales[Date] ) ) = MAX ( CalendarTable[Month] ), 1, 0 )
IsNextMonth = VAR currentSelectedMonth = MAX ( CalendarTable[Month] ) VAR currentSelectedYear = MAX ( CalendarTable[Year] ) VAR NextMonthSelected = IF ( currentSelectedMonth = 12, 1, currentSelectedMonth + 1 ) VAR nextYearSelected = IF ( currentSelectedMonth = 12, currentSelectedYear + 1, currentSelectedYear ) RETURN IF ( YEAR ( MAX ( Sales[Date] ) ) = nextYearSelected && MONTH ( MAX ( Sales[Date] ) ) = NextMonthSelected, 1, 0 )
Note: Replace "Sales" your fact table name.
3. Use the measures as visual level filter(IsNextMonth is 1) to get the corresponding result.
Regards
Hi Folks,
Problem statement-
My data is getting updated on daily basis in Power BI but I want my graphs to refresh data on next month (09-09-2020) ( day is same for all months) now what measure should I use to achieve this in Page level filter/ graph level filter?
Thanks
Sumesh
This did it thank you! You also opened my world as I was unaware we could use variable within BI in this way.
In general, you create a custom column along the lines of:
IsCurrentMonth = IF(MONTH(TODAY())=MONTH([Date]),1,0)
That is the current solution I am using to show current month. My intention is to show the selected filter month and have the adjacent table show the next relevant to the selected month. I knew my trouble would be describing exactly what I'm trying to do, does this clarify it any?
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
87 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |