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

Be 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

Reply
ogend
Helper I
Helper I

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

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

Community Support Team _ Rena
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

4 REPLIES 4
ogend
Helper I
Helper I

@v-yiruan-msft 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()) )

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

@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

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

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

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.