Formula / equation help

JamieL

New Member
Joined
Mar 20, 2018
Messages
3
Hello,<o:p></o:p>

I am trying to replicate the formula below in excel, but can't quite get it right. The aim is to use the formula to help drive data that I can graph into an s-shaped sales curve. The formula I have is:<o:p></o:p>


=Startingshare+((SaturationShare-startingShare)/(((1+((POWER(SaturationShare,2)/POWER(StartingShare,2)))/((HypergrowthStart+(TakeoverPeriod/2)-currentperiod)/TakeoverPeriod)))))<o:p></o:p>


Would anyone mind having a look and tell me if I'm missing something obvious please?

Formula_zpsfay5ecsp.jpg




 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
I think you have missed out a "power" so it should be something like thisL
=Startingshare+((SaturationShare-Startingshare)/(((1+POWER(((POWER(SaturationShare,2)/POWER(Startingshare,2))),((HypergrowthStart+(TakeoverPeriod/2)-currentperiod)/TakeoverPeriod))))))

I am not sure I have got the brackets right since I can't test it easily
 
Upvote 0


From what I see, B is the base of a power and E is it exponent. So the denominator should be calculated as
1+B^E

My guess is that the formula is
Code:
=Startingshare +(SaturationShare-Startingshare)/(1+(SaturationShare^2/Startingshare^2)^((HypergrowthStart+TakeoverPeriod/2-currentperiod)/TakeoverPeriod))
I used the operator "^" rather then the function POWER, to calculate powers.

Bye
 
Upvote 0

Forum statistics

Threads
1,215,681
Messages
6,126,192
Members
449,298
Latest member
Jest

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