How long will it take

Red over White

Board Regular
Joined
Jul 16, 2011
Messages
123
Office Version
  1. 365
Platform
  1. MacOS
I'm trying to establish how many days it will take the principal sum {PS} (say £1,000) to increase by £2 (but not exceed £1,002) when the interest rate {IR} is 5.50%. I know the answer {AN} is 13, because I have set up a formula using PS, IR, AN along with '/365'. The formula reads =K27*K29/365*K31 {or PS*IR/365*AN}. However, I have not been able to reverse engineer the formula to get to a figure close to 13, let alone put a limiter of £2.00 into the mix.

Any suggestions ...
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
A not so smart formula:
Excel Formula:
=MAX(IF(K27*K29/365*ROW(A1:A100)<=2,ROW(A1:A100),0))
 
Upvote 0
Solution
T202312a.xlsm
BC
1Principal1,000.00
2Rate5.50%
3FV1,002.00
4Nper13.26
5
9b
Cell Formulas
RangeFormula
C4C4=NPER(C2/365,0,-C1,C3,0)
 
Upvote 0
Formula to calculate number of days
days=ln(Future Value/Present Value)/ln(1+rate/365)
I get an answer of 14.4 days.
See example below.

Book1
ABCD
1principal1000
2Future Value1002
3Yearly Rate5.05%
4
5number days=ln(FV/PV)/ln(1+rate/365)
6Days =14.44
7
8Check
9Future Value$1,002.00
10
Sheet2
Cell Formulas
RangeFormula
B6B6=LN(B2/B1)/LN(1+B3/365)
B9B9=FV(B3/365,B6,,-B1)
 
Upvote 0
I just noticed I used the wrong rate in my post #5 above (should have been 5.5%).
I would also use the Excel formula that Dave Patton has in his post above.
 
Upvote 0

Forum statistics

Threads
1,216,095
Messages
6,128,795
Members
449,468
Latest member
AGreen17

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