Hi there,
I need to pick the largest value from 4 columns but excluding the number 6.
Say in each of these columns, the values only go from 1-6.
If all 4 columns are =6 then, I populate 6
Otherwise, I need to populate the high value apart from 6.
E.g.
6, 6, 6, 6, then I need 6
6, 2, 6, 3, then I need 3
1, 6, 6, 6, then I need 1
For the first scenario I thought of something like:
CASE WHEN column1 = 6 AND column2 = 6 and column3 = 6 AND column4 = 6 THEN 6
But I have no idea how to formulate the rest.
How should I achieve this please?
Hope it makes sense (sorry first time using the forum)
Would be great if someone could help
Thank you!!