Forum Discussion
Value previous year
Hello,
please, can you help me. I have simple data table and I need to add Calculated coloum Value previous year:
Please, anyone does know DAX formula?
Thank you
Hi Lucie_C,
You could create the calculated column with the formula below.
Column = CALCULATE ( MAX ( 'Table1'[Value] ), FILTER ( 'Table1', YEAR ( 'Table1'[Date] ) = YEAR ( EARLIER ( 'Table1'[Date] ) ) - 1 && [Company] = EARLIER ( Table1[Company] ) ) )Here is your desired output.
Hope this can help you!
Best Regards,
Cherry
4 Replies
- v-piga-msftResident Rockstar
Hi Lucie_C,
You could create the calculated column with the formula below.
Column = CALCULATE ( MAX ( 'Table1'[Value] ), FILTER ( 'Table1', YEAR ( 'Table1'[Date] ) = YEAR ( EARLIER ( 'Table1'[Date] ) ) - 1 && [Company] = EARLIER ( Table1[Company] ) ) )Here is your desired output.
Hope this can help you!
Best Regards,
Cherry
- Lucie_CFrequent Visitor
Thank you :)
- AnonymousNot applicable
Hello,
I have the same case but with a second date column called "As of date", which will be selected as a filter in the visual.
How can I expand the formula to include that second date?
Thank you!
- GDORegular Visitor
You could also use the formula below:
Coloumn = LOOKUPVALUE( Table1[Value] ; Table1[Company] ; Table1[Company] ; Table1[Date] ; SAMEPERIODLASTYEAR( Table1[Date] ) )