Forum Discussion

ogend's avatar
ogend
Helper II
4 years ago
Solved

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 a...
  • Anonymous's avatar
    Anonymous
    4 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