Excel LOG equation + 5% fee

docfry

New Member
Joined
Oct 22, 2022
Messages
5
Office Version
  1. 365
Platform
  1. MacOS
My excel function for an investment that tells me when (on a particular day) the investment will reach 27,400 is:

LOG((27400+1000)/1000, 1.01)

27400 = max investment
1000 = initial investment
1.01 = 1% daily increase

I need to add a 5% fee AFTER the 1% is paid out and represented the following day.

Like this:

Day 1: 1000 x 1% = 10; 10 x 5% = 0.5; 10-0.5 = 9.5 this gets added back in to the original investment

Day 2: 1009.5 x 1% = 10.095 x 5% = 0.50475; 10.095-0.50475 = 9.59025 + 1009.5 = 1019.09025

Day 3: 1019.09025 etc etc etc until investment reaches 27400.

I think this is more a deficiency of my math rather than excel, but maybe both.

Anyone know how to add a 5% fee to this equation LOG((27400+1000)/1000, 1.01) that will show me on what day# the investment will reach 27400?

Thanks!
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
What is your expected result?
Is it about 350.1 days?
What is the start date?
 
Last edited:
Upvote 0
Expected result: # of days it takes to get to 27400 investment (i.e. the maximum) taking into account the 1% increase and the 5% fee

I currently get 336.31 days when I run this equation (ignores the 5% fee): LOG((27400+1000)/1000, 1.01)

Start date is always today or Day 0.

Thanks so much for the help!
 
Upvote 0
I used Goal Seek with the formula from your earlier post.
Target 27400 change number of periods

You can prepare a schedule to check the results.
Just as an aside I include a revised Log calculation; you will have to determine the correct math.

Future Value.xlsm
EF
1Amount1000
2Interest1%
3Fee5%
4Term350.13
527,400.00
627,400.00
7
8350.13
9
1a
Cell Formulas
RangeFormula
F5F5=F1*(1+(F2-F2*F3))^F4
F6F6=FV(F2-F2*F3,F4,0,-F1)
F8F8=LOG((27400)/1000, 1.01-(0.01*0.05))
 
Upvote 0
Solution
That worked!

I am annoyed with myself that simple things can stump me! I just didn't know how to write 1.01-(0.01*0.05).

Do you have a way I can send you a couple of bucks to buy you a coffee or something??

Awesome! Thanks again!
 
Upvote 0
No payment expected. Your thank you is really appreciated.

The arithmetic proof would be like the following.
I do not have 365 on this computer. With 365, you can use sequence to create the list of numbers from 1-355
You do not need to calculate the rate in G3 but it may be more efficient.

Future Value.xlsm
ABCDEFG
11,000.00Amount1000
219.501,009.50Interest1%
329.591,019.09Fee5%0.0095
439.681,028.77Term350.13
549.771,038.5427,400.00
659.871,048.4127,400.00
769.961,058.37
1a
Cell Formulas
RangeFormula
B2,B4:B7B2=ROUND(C1*($F$2-$F$2*$F$3),2)
C2:C7C2=C1+B2
A3:A7A3=A2+1
B3B3=ROUND(C2*$G$3,2)
G3G3=($F$2-$F$2*$F$3)
F5F5=F1*(1+(F2-F2*F3))^F4
F6F6=FV(F2-F2*F3,F4,0,-F1)
 
Upvote 0

Forum statistics

Threads
1,214,520
Messages
6,120,003
Members
448,935
Latest member
ijat

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