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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
LynnM
Frequent Visitor

Creating month to date metrics from YTD data source

Hello,

 

I am literally pulling my hair out! My source data is YTD . I managed to create month only data but have run into an issue when I try to create a Full Year Budget. How can I show a full year budget that will not change with the date slicer?

 

Thanks in advance

2 ACCEPTED SOLUTIONS
Anonymous
Not applicable

Hi @LynnM ,

 

I suggest you to to try REMOVEFILTER() or ALL() function in your code. You can create a Dimdate table with continuous date ,then create a relationship between 'Data'[Date] and 'DimDate'[Date] and create a measure.

Measure:

 

YTD remove filter =
CALCULATE (
    SUM ( 'Data'[Value] ),
    FILTER ( ALL ( 'Date' ), 'Date'[Year] = YEAR ( TODAY () ) )
)

 

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

Thank you! This worked.

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @LynnM ,

 

I suggest you to to try REMOVEFILTER() or ALL() function in your code. You can create a Dimdate table with continuous date ,then create a relationship between 'Data'[Date] and 'DimDate'[Date] and create a measure.

Measure:

 

YTD remove filter =
CALCULATE (
    SUM ( 'Data'[Value] ),
    FILTER ( ALL ( 'Date' ), 'Date'[Year] = YEAR ( TODAY () ) )
)

 

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thank you! This worked.

indkitty
Helper II
Helper II

Hi Lynn,

If measure is on filter, remove filter.

Filtering Tables in DAX - SQLBI

Could you post sample data?

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Top Solution Authors