I have formulas in in Col O
If the data in say B3:M3 are negatives, the formula to use =large(B3:M3,12) . if positive values then use large(B3:M3,1)
The values in the row will either all be positive or will be negative
I have tried to use the formula below , but get #value !
It would be appreciated if someone can kindly amend it
If the data in say B3:M3 are negatives, the formula to use =large(B3:M3,12) . if positive values then use large(B3:M3,1)
The values in the row will either all be positive or will be negative
I have tried to use the formula below , but get #value !
Code:
=IF(SUM(B3:M3<0),LARGE(B3:M3,12),LARGE(B3:M3,10))
It would be appreciated if someone can kindly amend it