How to generate data points dynamically from power trendline

JenniferMurphy

Well-known Member
Joined
Jul 23, 2011
Messages
2,531
Office Version
  1. 365
Platform
  1. Windows
I have some data that I know follows a power curve. I have plotted the data, generated a trendline, and have the power function displayed on the chart. Here's the current set of data and the displayed trendline equation. The value "0.01" in H2 is a temporary value because Excel's power function curve fitting algorithm cannot handle zeroes. (sigh)

ABCDEFGH
1N1234567
2Actual Tally12243146110.01

<tbody>
</tbody>

y=798.59e-1.371x

As I run each trial, I add to the corresponding tally. For example, if the next trial results in a Value of "3", I will increment D2 from 14 to 15.

I would like to add a new row (3) that wold show the expected tally as computed by the trendline. And I would like that data to be dynamically and automatically updated when I update a value.


ABCDEFGH
1N1234567
2Actual Tally12243146110.01
3Expected Tally??????????????

<tbody>
</tbody>

Is there any way to do this that might be simple enough for me to understand?
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
Try this:


Excel 2010
ABCDEFGH
1N1234567
2Actual Tally12243146110.01
3
4Expected:420.706126.720795.3281141.6971490.6987640.3384110.183321
5c420.7061
6b-3.97678
Sheet2
Cell Formulas
RangeFormula
B4=$B$5*B1^$B$6
B5=EXP(INDEX(LINEST(LN($B$2:$H$2),LN($B$1:$H$1),,),1,2))
B6=INDEX(LINEST(LN($B$2:$H$2),LN($B$1:$H$1),,),1)
C4=$B$5*C1^$B$6
D4=$B$5*D1^$B$6
E4=$B$5*E1^$B$6
F4=$B$5*F1^$B$6
G4=$B$5*G1^$B$6
H4=$B$5*H1^$B$6
 
Upvote 0

Forum statistics

Threads
1,214,827
Messages
6,121,818
Members
449,049
Latest member
cybersurfer5000

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