March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe 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
Hi All,
Need help in Calculate previous year total amount for current year . I have Year and current year amount in source. Need Previous year amount to be derived .
Year | Current year Amount | Previous year Amount |
2018 | 100 | |
2019 | 200 | 100 |
2020 | 300 | 200 |
Solved! Go to Solution.
Hi, @AOD
It is solved by calculation column. First calculate the year of the previous year, and then output the total amount of the previous year.
Previous year =
DATEADD ( 'Table'[Year], -1, YEAR )
Previous year Amount =
CALCULATE (
MAX ( 'Table'[Current year Amount] ),
FILTER ( 'Table', 'Table'[Year] = EARLIER ( 'Table'[Previous year] ) )
)
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @AOD
It is solved by calculation column. First calculate the year of the previous year, and then output the total amount of the previous year.
Previous year =
DATEADD ( 'Table'[Year], -1, YEAR )
Previous year Amount =
CALCULATE (
MAX ( 'Table'[Current year Amount] ),
FILTER ( 'Table', 'Table'[Year] = EARLIER ( 'Table'[Previous year] ) )
)
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@AOD , If you need this as a new column
last year = sumx(filter(Table, [Year] = earlier([Year]) -1) , [Current year] )
for measure prefer to have separate year table(say Date) joined to this table
Curr Year = CALCULATE(sum('Table'[THis year]),filter(ALL('Date'),'Date'[Year]=max('Date'[Year])))
Last Year = CALCULATE(sum('Table'[THis year]),filter(ALL('Date'),'Date'[Year]=max('Date'[Year])-1))
Power BI — Year on Year with or Without Time Intelligence
https://medium.com/@amitchandak.1978/power-bi-ytd-questions-time-intelligence-1-5-e3174b39f38a
https://www.youtube.com/watch?v=km41KfM_0uA
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
87 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |