View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.programming
Jim Rech[_4_] Jim Rech[_4_] is offline
external usenet poster
 
Posts: 39
Default Data Table Issues

Your example shows me that I misunderstood your point. I agree that doing
what you did in the example is a little odd and I would never have thought
to do it. On the other hand you could be interested to the values of A3
where the value of intermediate formula A2 is (some series) regardless of
how A2 got to those values. I mean, if A2 and A1 were really complex and
you didn't want to have to mess with them, just cut to the chase and imbue
A2 with these values. Pretty neat. Reminds me of the old Excel 4 macro
SET.VALUE function which could temporarily assign a value to a cell quite
apart from its actual value.



"DA" wrote in message
...
I'll assume a one-dimensional data table to keep it simple

Suppose cell A1 really is an input and is equal to 3. Suppose cell A2
has a formula in it, that says =2*A1, so it is 2*3 = 6.

Suppose cell A3 has a formula in it that says = 2*A1 + 2*A2. So it is
equal to 2*3 + 2* 6 = 18.

I now create a data table for cell A3 with cell A2 as the input, i.e.,
varied parameter. So, if cell A2 takes on a value of 4, it blindly
will say that cell A3 is equal to 2*3 + 2*4 = 6+8 =4.

But, we know that for cell A2 to be equal to 4, cell A1 would need to
be equal to 2. But it clearly is still equal to 3.

Do you see my point?

Thanks