Prepaid Expense amortization

adiles

New Member
Joined
Jun 13, 2020
Messages
41
Office Version
  1. 365
Platform
  1. Windows
Hi All,

Can anyone help me out with this excel. I want a formula which auto calculate according to the month between start date and end date.


NAMESTART DATEEND DATENO.OF DAYSAMOUNTPER DAYJan-13Feb-13Mar-13Apr-13May-13Jun-13Jul-13Aug-13
OFFICE RENT TAX '19-20
15-Jan-2013​
14-Jan-2014​
365​
80,000.00219.18
3506.849​
Auto fillAuto fillAuto fill


I tried using this formula.
=IFS(AND(G1<$B2,G1<$C2),SUM(DAYS(EOMONTH($B2,0),$B2)*$F2),AND(G1>$B2,G1<$C2),(EOMONTH(G1,0))*$F$2)
but it wont work for me.
Your reply will be highly appreciated.
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Welcome to the forum, try

=IF(AND($B2<EOMONTH(G$1,0),$C2>G$1),MIN((MAX($C2,G$1)+1-G$1),(EOMONTH(G$1,0)+1-MAX($B2,G$1)))*$F2,)

1592051555887.png
 
Upvote 0
Adjusted for month 1

=IF(AND($B2<EOMONTH(G$1,0),$C2>G$1),MIN((MAX($C2,G$1)+IF($B2>G$1,0,1)-G$1),(EOMONTH(G$1,0)+IF($B2>G$1,0,1)-MAX($B2,G$1)))*$F2,)

1592053242440.png
 
Upvote 0
An alternative that you can try. This formula gives a different amount for the first month and the 12 months sum to the specified amount.

The second suggestion just eliminates the need for the days and daily amount columns.

T202006a.xlsm
BCDEFGHI
1StartEndAmountDaysDaily AmtJan-2013Feb-2013Mar-2013
215-Jan-1314-Jan-14$80,000.00365219.183,726.036,136.996,794.52
301-Jan-1331-May-13$1,000.001516.62205.30185.43205.30
4
5
6StartEndAmountJan-2013Feb-2013Mar-2013Apr-2013May-2013
715-Jan-1314-Jan-14$80,000.003,726.036,136.996,794.526,575.346,794.52
801-Jan-1331-May-13$1,000.00205.30185.43205.30198.68205.30
9
9a
Cell Formulas
RangeFormula
E2:E3E2=C2-B2+1
F2:F3F2=D2/(C2-B2+1)
G2:I3G2=MAX(0, MIN(EOMONTH(G$1, 0), $C2) + 1 - MAX(G$1, $B2))*$F2
E7:I8E7=MAX(0, MIN(EOMONTH(G$1, 0), $C7) + 1 - MAX(G$1, $B7))*$D7/($C7-$B7+1)
 
Upvote 0
correction to E8
T202006a.xlsm
BCDEFGHIJK
1StartEndAmountDaysDaily AmtJan-2013Feb-2013Mar-2013Apr-2013May-2013
215-Jan-1314-Jan-14$80,000.00365219.183,726.036,136.996,794.526,575.346,794.52
301-Jan-1331-Dec-13$365.003651.0031.0028.0031.0030.0031.00
401-Jan-1331-May-13$1,000.001516.62205.30185.43205.30198.68205.30
5
6
7StartEndAmountJan-2013Feb-2013Mar-2013Apr-2013May-2013Jun-2013Jul-2013
815-Jan-1314-Jan-14$80,000.003,726.036,136.996,794.526,575.346,794.526,575.346,794.52
901-Jan-1331-Dec-13$365.0031.0028.0031.0030.0031.0030.0031.00
10
9a
Cell Formulas
RangeFormula
E2:E4E2=C2-B2+1
F2:F4F2=D2/(C2-B2+1)
G2:K4G2=MAX(0, MIN(EOMONTH(G$1, 0), $C2) + 1 - MAX(G$1, $B2))*$F2
E8:K9E8=MAX(0, MIN(EOMONTH(E$7, 0), $C8) + 1 - MAX(E$7, $B8))*$D8/($C8-$B8+1)
 
Upvote 0
@gaz_chops Hi, can you please help me out with yearly also. I want to display the amounts at year end. What will be the formula ?
 
Upvote 0

Forum statistics

Threads
1,214,919
Messages
6,122,260
Members
449,075
Latest member
staticfluids

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