keylimesoda
New Member
- Joined
- Jan 31, 2017
- Messages
- 5
Goal is to get a set of non-contiguous values from a row into an array so it can be combined (e.g. SUMPRODUCT) with other arrays. The values in the array should be selected from the current row based on table column name.
I'd thought I could do something like:
=SUMPRODUCT(
However, the INDEX function simply evaluates to the value of @speedRating, rather than a full array.
How do I get my set of non-contiguous values from my row into an array for further manipulation?
I'd thought I could do something like:
=SUMPRODUCT(
G5:G7,
INDEX(
([@speedRating],[@strengthRating],[@agilityRating]),
1,
0
)
)
However, the INDEX function simply evaluates to the value of @speedRating, rather than a full array.
How do I get my set of non-contiguous values from my row into an array for further manipulation?