Technically, you don't have the array, {10,20,30,40},
in cell A1. You either have a text representation
of an array constant (i.e., "{10,20,30,40}") in cell
A1 or A1 contains the 1st element, 10, of the array
constant using with the formula, ={10,20,30,40}.
Which is it?
Mark,
Thanks for your message. I should have clarified as it does effect how you would approach the problem. Let's say A2 contains 10, B2 contains 20, C2 contains 30, and D2 contains 40. A1 is the result of highlighting the range A2:D2 and pressing ctrl-shift-enter. I would prefer to work off A1 because in practice I would want to apply intermediate operators to the range A2:D2 before attempting to do a cumulative product. But my understanding of cell A1 in this case is that it would contain the entire array but only show the value 10 on the screen. Is this the case?
Thanks again for your help!
Brian
> my understanding... is that [cell A1] would
> contain the entire array but only show the
> value 10 on the screen.
That is not the case. A1 only contains 10.
=A1 produces 10.
Mark,
I guess you're right...by highlighting the formula in A1 and pressing F9, I got the entire array... I was under the mistaken impression it would allow me to reference A1 as an array.
My bad.
Then it possible to do a cumulative product of cells A2 through D2?
Thanks!
Brian
> Then [is] it possible to do a cumulative
> product of cells A2 through D2?
Enter =PRODUCT($A$2:A2) into cell A1 and fill right. I guess you're right...by highlighting the formula in A1 and pressing F9, I got the entire array... I was under the mistaken impression it would allow me to reference A1 as an array.