Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
TapZxK
Helper II
Helper II

Rolling Totals but hide Future Months

Hi All,

 

I have created a measure that allows me to compare Time Invest per month last FY & Current Fiscal. 

In the data set, I currently have all the data up until & including April 2023, when I put the measure on a clustered column chart visual or table visual the April numbers keep repeating until end of the Fiscal.

Is there a way to show future months as 0 until actual data comes in for those months?

My Fiscal Starts on 01-September

 

Rolling Total Hours =
VAR CurrentYearHours =
    CALCULATE ( [Total Time Invested], DATESYTD ( Calendar[Date], "08/31" ) )
RETURN
    TOTALYTD (
        CurrentYearHours,
        Calendar[Date],
        FILTER (
            ALL ( 'Calendar'[Date] ),
            'Calendar'[Date] >= DATE ( YEAR ( MAX ( 'Calendar'[Date] ) ), 9, 1 )
                && 'Calendar'[Date]
                    <= DATE ( YEAR ( MAX ( 'Calendar'[Date] ) ) + 1, 8, 31 )
        )
    )

 

TapZxK_1-1683750053990.png

 

TapZxK_2-1683750154035.png

 

Thank you for your help. 

1 ACCEPTED SOLUTION
Greg_Deckler
Community Champion
Community Champion

@TapZxK Try:

Rolling Total Hours =
VAR MaxDate = MAX( 'Calendar'[Date])
VAR CurrentYearHours =
    CALCULATE ( [Total Time Invested], DATESYTD ( Calendar[Date], "08/31" ) )
VAR TYTD = 
    TOTALYTD (
        CurrentYearHours,
        Calendar[Date],
        FILTER (
            ALL ( 'Calendar'[Date] ),
            'Calendar'[Date] >= DATE ( YEAR ( MAX ( 'Calendar'[Date] ) ), 9, 1 )
                && 'Calendar'[Date]
                    <= DATE ( YEAR ( MAX ( 'Calendar'[Date] ) ) + 1, 8, 31 )
        )
    )
VAR Result = IF( MaxDate > TODAY(), BLANK(), TYTD )
RETURN
Result


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

1 REPLY 1
Greg_Deckler
Community Champion
Community Champion

@TapZxK Try:

Rolling Total Hours =
VAR MaxDate = MAX( 'Calendar'[Date])
VAR CurrentYearHours =
    CALCULATE ( [Total Time Invested], DATESYTD ( Calendar[Date], "08/31" ) )
VAR TYTD = 
    TOTALYTD (
        CurrentYearHours,
        Calendar[Date],
        FILTER (
            ALL ( 'Calendar'[Date] ),
            'Calendar'[Date] >= DATE ( YEAR ( MAX ( 'Calendar'[Date] ) ), 9, 1 )
                && 'Calendar'[Date]
                    <= DATE ( YEAR ( MAX ( 'Calendar'[Date] ) ) + 1, 8, 31 )
        )
    )
VAR Result = IF( MaxDate > TODAY(), BLANK(), TYTD )
RETURN
Result


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.