Proportionate Depreciation per Month

AugBB

New Member
Joined
Jan 28, 2016
Messages
2
[FONT=Arial, Helvetica, sans-serif]I'm trying to break down the annual straight line depreciation into a more granular level of monthly depreciation for thousands of assets. Also considering year end is June 30th, not December 31st.

[/FONT]What I am trying to do is to find a formula that can calculate depreciation per month, prorating the depreciation if purchased in the middle of the month.

What I have thus far:
EFGLMNO
3UL (yrs)Capitalization DateCost2010-06-302011-06-302012-06-302013-06-30
432010-06-10116,4992,12838,83338,93936,599

<tbody>
</tbody>

Formula in cell L4 is =IF(L$3-$F4>$E4*365,$G4-SUM($K4:K4),IF(L$3-$F4<0,0,SLN($G4,0,$E4*365)*(L$3-$F4)-SUM($K4:K4)))
Formula in cell M4 is =IF(M$3-$F4>$E4*365,$G4-SUM($K4:L4),IF(M$3-$F4<0,0,SLN($G4,0,$E4*365)*(M$3-$F4)-SUM($K4:L4)))
Formula in cell N4 is =IF(N$3-$F4>$E4*365,$G4-SUM($K4:M4),IF(N$3-$F4<0,0,SLN($G4,0,$E4*365)*(N$3-$F4)-SUM($K4:M4)))
Formula in cell O4 is =IF(O$3-$F4>$E4*365,$G4-SUM($K4:N4),IF(O$3-$F4<0,0,SLN($G4,0,$E4*365)*(O$3-$F4)-SUM($K4:N4)))

What I would like to see is depreciation per month instead of per year. For example depreciation for, 2010-06-30 then 2010-07-31, 2010-08-31, 2010-09-30, etc. All the way until the last month of depreciation in 2013.
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Try this in L4 and copy across and down
=IF(L$3-$F4>$E4*365,($G4-SUM($K4:K4))/(B4*12-(DATEDIF($F4,K$3,"m")+1)),IF(L$3-$F4<0,0,SLN($G4,0,$E4*365)*(L$3-$F4)-SUM($K4:K4))/IF($F4>DATE(YEAR(L$3)-1,6,30),DATEDIF($F4,L$3,"M")+1,12))
I suggest that you consider a column for salvage value, rather than hard coding a zero into the formula, unless you are confident that every asset will be zero salvage
 
Upvote 0
Thank you for your reply. Something doesn't look right.

In the formula, what is cell B4 referencing?

=IF(L$3-$F4>$E4*365,($G4-SUM($K4:K4))/(B4*12-(DATEDIF($F4,K$3,"m")+1)),IF(L$3-$F4<0,0,SLN($G4,0,$E4*365)*(L$3-$F4)-SUM($K4:K4))/IF($F4>DATE(YEAR(L$3)-1,6,30),DATEDIF($F4,L$3,"M")+1,12))

The annual depreciation for 2011 should total $38,833, but when adding up the months using this formula it only equates to $19,404.

Partial depreciation should be charged in the month of acquisition and thereafter it should calculate equal monthly depreciation expense until the final month in 2013. In the final month of 2013 it should calculate partial depreciation once again.
 
Upvote 0
Sorry, beginners error. I set up the formula in O4 and copied back to L4 without $
Try this in L4
=IF(L$3-$F4>$E4*365,($G4-SUM($K4:K4))/($E4*12-(DATEDIF($F4,K$3,"m")+1)),IF(L$3-$F4<0,0,SLN($G4,0,$E4*365)*(L$3-$F4)-SUM($K4:K4))/IF($F4>DATE(YEAR(L$3)-1,6,30),DATEDIF($F4,L$3,"M")+1,12))
 
Upvote 0

Forum statistics

Threads
1,215,461
Messages
6,124,952
Members
449,198
Latest member
MhammadishaqKhan

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top