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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
ogend
Helper II
Helper II

Measure: Amount for All Future Years

Hello Guys, 

 

Hopefuly this  is an easy question: 

I have a fact table with 'Amount' and 'DueDate' columns.

I created a calendar table , linked Calendar[Date] with the FactTable[DueDate] and I am using  Calendar[Year] as a report slicer. I want to have two columns in a matrix report: 'Due this year' (based on slicer selection) and 'due All future years' (relative to slicer selection).

I am struggling with "All Future Years". I belive i have to use All (Calendar[Date] ) to get rid of the year slicer context and then filter on something like Calendar[Date] > Lastdate of the year selected through the slicer, but I had no luck figuring out the syntax. 

Can you please help? 

 

Thank you!

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @ogend  ,

I created a sample pbix file(see attachment) for you, please check whether that is what you want.

1. Delete the relationship between Calendar and Facttable

yingyinr_0-1654851521454.png

2. Create a measure as below:

Amount for All Future Years = 
VAR _selyear =
    SELECTEDVALUE ( 'Calendar'[Date].[Year] )
RETURN
    CALCULATE (
        SUM ( 'FactTable'[Amount] ),
        FILTER ( 'FactTable', YEAR ( 'FactTable'[DueDate] ) > _selyear )
    )

yingyinr_1-1654851552734.png

If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

How to upload PBI in Community

Best Regards

View solution in original post

4 REPLIES 4
ogend
Helper II
Helper II

@Anonymous Thank you!

amitchandak
Super User
Super User

@ogend ,based on what I got

 

Do not take any date filter, you can have a measure like

 

Calculate(sum(Table[Amount]), filter('Date', 'Date'[Date] > today()) )

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

@amitchandak , thank you, but I'd need future years relative to the year selected by the year slicer( calendar table) , not the actual future relative to today(). If I select 2022 to be "the year', it should be 2023 and everything after, but if I select 2010 in the slicer, it should be years equal or larger than 2011

Anonymous
Not applicable

Hi @ogend  ,

I created a sample pbix file(see attachment) for you, please check whether that is what you want.

1. Delete the relationship between Calendar and Facttable

yingyinr_0-1654851521454.png

2. Create a measure as below:

Amount for All Future Years = 
VAR _selyear =
    SELECTEDVALUE ( 'Calendar'[Date].[Year] )
RETURN
    CALCULATE (
        SUM ( 'FactTable'[Amount] ),
        FILTER ( 'FactTable', YEAR ( 'FactTable'[DueDate] ) > _selyear )
    )

yingyinr_1-1654851552734.png

If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

How to upload PBI in Community

Best Regards

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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