I have a set of values, for exemple :
14 ; 17 ; 12 ; 14 ; 12 ; 8
You might recognize a set of DnD ability scores. I want to calculate the amount of creation point used for these.
So I would like to combine SUM and CHOOSE. I tried this (same as in my working LibreOffice sheet) :
=ARRAYFORMULA(SUM(CHOOSE(C9:C14 - 6; -4; -2; -1; 0; 1; 2; 3; 5; 7; 10; 13; 17)))
I expected 25 (5+13+2+5+2-2), got 5. For some reason it stops right after the first value without doing any sum.