Monthly DeprecationFormula

therookie88

New Member
Joined
Aug 10, 2016
Messages
3
I'm trying to get a formula for current deprecation that depreciates monthly but I cant seem to figure it out I have it depreciating yearly at the moment. Can anyone see on my formula that I can tweak?

=IF(AND(Life>0,LEN(Life)>0,[Acquisition Cost]>0,[Acquisition Year]<DATE(2016,1,1)),IF(DATEDIF([Acquisition Year],DATE(2016,1,1),"m")<Life*12,[Acquisition Cost]/Life,IF(DATEDIF([Acquisition Year],DATE(2016,1,1),"m")=Life*12,[Acquisition Cost]/Life/2,0)),IF(AND(Life>0,LEN(Life)>0,[Acquisition Cost]>0),[Acquisition Cost]/Life/2,0))
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
I'm trying to get a formula for current deprecation that depreciates monthly but I cant seem to figure it out I have it depreciating yearly at the moment. Can anyone see on my formula that I can tweak?
=IF(AND(Life>0,LEN(Life)>0,[Acquisition Cost]>0,[Acquisition Year]<DATE(2016,1,1)),IF(DATEDIF([Acquisition Year],DATE(2016,1,1),"m")<Life*12,[Acquisition Cost]/Life,IF(DATEDIF([Acquisition Year],DATE(2016,1,1),"m")=Life*12,[Acquisition Cost]/Life/2,0)),IF(AND(Life>0,LEN(Life)>0,[Acquisition Cost]>0),[Acquisition Cost]/Life/2,0))
 
Upvote 0
=IF(AND(Life>0,LEN(Life)>0,[Acquisition Cost]>0,[Acquisition Year]<DATE(2016,1,1)),IF(DATEDIF([Acquisition Year],DATE(2016,1,1),"m")<Life*12,[Acquisition Cost]/Life,IF(DATEDIF([Acquisition Year],DATE(2016,1,1),"m")=Life*12,[Acquisition Cost]/Life/2,0)),IF(AND(Life>0,LEN(Life)>0,[Acquisition Cost]>0),[Acquisition Cost]/Life/2,0))

I'm trying to get a formula for current deprecation that depreciates monthly but I cant seem to figure it out I have it depreciating yearly at the moment. Can anyone see on my formula that I can tweak?
 
Upvote 0
Are you doing simple interpolation? You can do something of this general form if so (calculates total complete months then multiplies by yearly rate/12):

Code:
=DATEDIF(StartDate,EndDate,"m")*YearlyDeprecationRate/12

If not please post some example data and desired outputs so we can try to help you.
 
Upvote 0

Forum statistics

Threads
1,221,418
Messages
6,159,791
Members
451,589
Latest member
Harold14

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