askall1000
Board Regular
- Joined
- Jan 3, 2019
- Messages
- 58
- Office Version
- 2016
- Platform
- Windows
Hello All, I need help about depreciation calculation, there is a lot of rows to calculate depreciation in J column. What i want to try to if there is more than 12 months left for depreciation for 2021 according to purchase date i want to write 12 months, if less than 12 months i want to write that number of month in sample it should write 3 month. if useful life exceeded it should write zero. I did zero and twelve month but i couldn't did less than 12 months. And I don't want to use helper column and there are lot of cells that have different useful life and purchase dates.Thank you very much for your help in advance.
Sample Data:
Sample Data:
Book4 | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | H | I | J | K | L | |||
2 | 31.12.2020 | 31.12.2021 | 31.12.2021 | 31.12.2021 | ||||||||||
3 | Asset Type | Location | Office Unit | New Asset Code | New Asset Description | Total Value | Purchase Date | Useful Life (Month) | Acc. Amortization 31.12.2020 | Depreciation&Amortization Expense (Month) 31.12.2021 | Depreciation&Amortization Expense 31.12.2021 | Acc. Amortization31.12.2021 | ||
4 | xxxxxxxxxxxxx | 2.000,00 | 15.04.2016 | 60,00 | 1.900,00 | 0,00 | 0,00 | 1.900,00 | ||||||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
I3 | I3 | ="Acc. Amortization" &" "&TEXT(I2,"gg.aa.yyyy") |
J3 | J3 | ="Depreciation&Amortization Expense (Month) "&TEXT(J2,"gg.aa.yyyy") |
K3 | K3 | ="Depreciation&Amortization Expense "&TEXT(K2,"gg.aa.yyyy") |
L3 | L3 | ="Acc. Amortization"&TEXT(L2,"gg.aa.yyyy") |
I4 | I4 | =+IFERROR(ROUND(IF(DATEDIF(((EOMONTH(G4,-1)+1)),$I$2,"m")>=H4,F4,(DATEDIF((EOMONTH(G4,-1)+1),$I$2,"m")+1)*F4/H4),2),0) |
J4 | J4 | =+IF(DATEDIF(G4,$K$2,"m")>=H4,0,IF(DATEDIF(G4,$K$2,"m")>=12,12,DATEDIF(G4,$K$2,"m")+1)) |
K4 | K4 | =+ROUND(F4/H4*J4,2) |
L4 | L4 | =+I4+K4 |