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

The FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now

Reply
AOD
Helper III
Helper III

Calculate previous year total amount for current year

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 .

 

YearCurrent year AmountPrevious year Amount
2018100 
2019200100
2020300200
1 ACCEPTED SOLUTION
v-zhangti
Community Support
Community Support

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] ) )
)

 

vzhangti_0-1636681861454.png

 

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.

View solution in original post

2 REPLIES 2
v-zhangti
Community Support
Community Support

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] ) )
)

 

vzhangti_0-1636681861454.png

 

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.

amitchandak
Super User
Super User

@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

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.