I know that you can use the following formulae in Excel to fit a curve using LINEST for the named ranges x and y:
Exponential Trendline
Equation: y = c *e ^(b * x)
c: =EXP(INDEX(LINEST(LN(y),x),1,2))
b: =INDEX(LINEST(LN(y),x),1)
My question is, if I want to fix c=1 can I simply use
b...