SLN - Straight Line Depreciation

T

tr2yhb

The current year in entered in A.
In C I have entered the month of purchase.
In D I have entered the day of purchase (1st - 31st).
In E I have entered the year of purchase.
In F I have entered the amount of the purchase.
In G I have entered the life of the assets.
In I I have entered the salvage value.

In K I have entered the following =SLN(F,I,G)

What I what to do:

I want K to calculate mid-month SL depreciation.
Let say an assets was purchased on January 16 for $700, with a life of
7 years. A normal year (full year) would calculate $100 worth of
depreciation.

With mid-month depreciation, if an asset is purchased after the 15th of
the month, you start depreciating the first of the next month.

In the example above, the depreciation would be $641.67 (700/12*11).


How do I do this?
 
R

Roman

You can use this formula for the first year mid-month depreciation:

=IF(D1>15;(F1-I1)/12*(12-C1);(F1-I1)/12*(12-C1+1))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top