Is it possible to store some numbers in one cell (as an array)? Please see below:
cell A1: 4,4,3,4,1,3,3,4
cell A2: 5
(5th element of array)
cell A3: 546254
(constant for this month)
cell A4: =(MAX(A1)-INDEX(CHOOSE({1,2,3,4,5,6,7,8},A1),1,A2)) * (A3/SUM(A1))
(here 63029)
The formula of cell A4 causes error. Only way to solve it changing it as below:
cell A4: =(MAX(4,4,3,4,1,3,3,4)-INDEX(CHOOSE({1,2,3,4,5,6,7,8},4,4,3,4,1,3,3,4),1,A2)) * (A3/SUM(4,4,3,4,1,3,3,4))
So, I should write whole array in formula. I don't want to use VBA and Named Ranges.