slstewart249
New Member
I am trying to write a formula to calculate Depreciation. Each row has a single Capex Item with the columns showing Q1, Q2, Q3, Q4 & # of Years Useful Life. For this formula I've assumed the month has 5 weeks (cell AD11).
FIRST ROW WITH DEPRECIATION FORMULA
=IF($F15>0,($F15/($M15)/52)*AD$11,IF($G15>0,($G15/($M15)/52)*AD$11,IF($H15>0,($H15/($M15)/52)*AD$11,IF($I15>0,($I15/($M15)/52)*AD$11," "))))
F15 is $100K for Item 1, bought in Q1. M15 is # Years useful life which is "5." 52 Weeks in year and AD11 is "5" weeks in month. Result is $1.9K deprecation/month in Q1
SECOND ROW WITH DEPRECIATION FORMULA
=IF($F16>0,($F16/($M16)/52)*AD$11,IF($G16>0,($G16/($M16)/52)*AD$11,IF($H16>0,($H16/($M16)/52)*AD$11,IF($I16>0,($I16/($M16)/52)*AD$11," "))))
F15 is $0, G15 is $100K for Item2 bought in Q2. Using this formula, the result is ALSO $1.9K depreciation/month in Q1.
I want the Depreciation result to be 0 if no Capex was bought in a Quarter.
What is wrong with this formula? Please help!
FIRST ROW WITH DEPRECIATION FORMULA
=IF($F15>0,($F15/($M15)/52)*AD$11,IF($G15>0,($G15/($M15)/52)*AD$11,IF($H15>0,($H15/($M15)/52)*AD$11,IF($I15>0,($I15/($M15)/52)*AD$11," "))))
F15 is $100K for Item 1, bought in Q1. M15 is # Years useful life which is "5." 52 Weeks in year and AD11 is "5" weeks in month. Result is $1.9K deprecation/month in Q1
SECOND ROW WITH DEPRECIATION FORMULA
=IF($F16>0,($F16/($M16)/52)*AD$11,IF($G16>0,($G16/($M16)/52)*AD$11,IF($H16>0,($H16/($M16)/52)*AD$11,IF($I16>0,($I16/($M16)/52)*AD$11," "))))
F15 is $0, G15 is $100K for Item2 bought in Q2. Using this formula, the result is ALSO $1.9K depreciation/month in Q1.
I want the Depreciation result to be 0 if no Capex was bought in a Quarter.
What is wrong with this formula? Please help!