Using Google Sheets, I have a reference sheet with names along the Header and 3 values below each. On the primary sheet, I want to have a name input in cell B8 and a formula in C12 to take that name and lookup in sheet 'Range' for the 3 values but return the highest value of the 3.
Here is the shared sheet: HighValueTest google sheet
Once I have that value (between 1 and 5) I want to highlight a column of cells representing the count of that value.
Any help greatly appreciated!
ArrayFormula(max(hlookup(B8,Range!B1:BD4,{2;3;4},false)))
– KolaB