Within Calc, I’m trying to create a formula that will give me the value from the range A2:A11 that has the greatest magnitude. I believe this should work when entered as an array formula:
=INDEX(A2:A11,MATCH(MAX(ABS(A2:A11)),MAX(ABS(A2:A11)),0))
If I put it in as a normal formula, it says Err:502. If I put it in as an array formula (Ctrl+Shift+Enter), which I beleive is what I should be doing, it says Err:504. Why doesn’t it work as expected?