Forum Discussion
Measure: Amount for All Future Years
- Anonymous4 years ago
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
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 ) )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
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()) )
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
- Anonymous4 years agoNot 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
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 ) )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