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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Stop YTD from Pre-Filling Future Months

How do i get the YTD to NOT use this months data for current months? Example below: Today we are in september, and the YTD measure is pre-filling October, November, and December with this months data.

 

How do I make it blank? Thanks.

 

 

2020-09-28_15-40-22.png

1 ACCEPTED SOLUTION
danextian
Super User
Super User

Hi @Anonymous ,

 

This is usually the case if you have a separate Facts and Dates tables. Your Dates table has the full year but Facts is only up to a particular date. In that case, you may try this measure:

Running Sum = 
IF (
    MAX ( Dates[Date] ) <= CALCULATE ( MAX ( 'Facts'[Date] ), ALL ( 'Facts' ) ),
    CALCULATE (
        [Aggregation Measure],
        FILTER ( ALL ( Dates ), Dates[Date] <= MAX ( Dates[Date] ) )
    )
)

 










Did I answer your question? Mark my post as a solution!


Proud to be a Super User!









"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

View solution in original post

4 REPLIES 4
danextian
Super User
Super User

Hi @Anonymous ,

 

This is usually the case if you have a separate Facts and Dates tables. Your Dates table has the full year but Facts is only up to a particular date. In that case, you may try this measure:

Running Sum = 
IF (
    MAX ( Dates[Date] ) <= CALCULATE ( MAX ( 'Facts'[Date] ), ALL ( 'Facts' ) ),
    CALCULATE (
        [Aggregation Measure],
        FILTER ( ALL ( Dates ), Dates[Date] <= MAX ( Dates[Date] ) )
    )
)

 










Did I answer your question? Mark my post as a solution!


Proud to be a Super User!









"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.
darentengmfs
Post Prodigy
Post Prodigy

Hi @Anonymous 

 

Add a new column in your date table

 

Today and Before = IF([Date]<=TODAY(),1,0)

 

Click on the visual, go to the filter pane, add [Today and Before] in it and select 1.

 

darentengmfs_0-1601328273110.png

 

Anonymous
Not applicable

Unfortunately this didn't do anything for me.

@Anonymous , Use the date from month year is coming in visual

 

if(Max(Date[date]) >Today(), blank() , [YTD])

 

if(Max(Date[date]) > eomonth(Today(),0), blank() , [YTD])

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.