Current Depreciation Not to exceed cost of asset

anillinda

New Member
Joined
Apr 20, 2012
Messages
48
I would like to calculate current depreciation which should not exceed the cost of the asset, which is in cell b2.
Thanks.

The current depreciation is being calculated as under:
=IF(A8="","",ROUND(IF(A8=1,SLN($B$2,0,$B$3)/12*DATEDIF($B$4,$B$6,"M"),SLN($B$2,0,$B$3)),0))



ABCDEFG
1AssetMachinery
2Book Value27500
3Recovery Period5
4Placed into Service12/10/2002
5MethodStraight Line
6Fiscal year End07/31/2003
7YearsAssetCostPrior DepreciationCurrent Depreciation
81Machinery2750003208
92Machinery2750032085500
103Machinery2750087085500
114Machinery27500142085500
125Machinery27500197085500
136Machinery27500252085500THIS SHOULD BE LESS THAN 5500/-

<tbody>
</tbody>

****** id="cke_pastebin" style="position: absolute; top: 208px; width: 1px; height: 1px; overflow: hidden; left: -1000px;">
5

<tbody>
</tbody>
</body>
 
Last edited:

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Assuming that the formula in D8 is =IF(A8="", "", SUM(D7,E7)) , which returns zero if D7 and E7 are text (see D8), the formula in E8 should be:

=IF(A8="", "", MIN(C8-D8, ROUND(IF(A8=1, SLN($B$2,0,$B$3)*DATEDIF($B$4,$B$6,"M")/12, SLN($B$2,0,$B$3)),0)))

Note the subtle reordering of the "/12" term. IMHO, that makes your intention clearer, to wit: prorate SLN by fraction of year.

Aside.... You might want to look at the half-year convention to see if it applies. The MIN term works in either case.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,650
Messages
6,120,736
Members
448,988
Latest member
BB_Unlv

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