I have a function that looks up a person’s rating from a column of numbers. The column number increments for each week, so for first week the formula reads:
INDEX($‘MVP Ranking’.$A:$A, MATCH($N6, $‘MVP Ranking’.$C:$C, 0))
$A:$A is the column with names, N6 is a number for rating, $C:$C is a rank list column
However, for the second week, the MATCH column is to be $D:$D, third week it should be $E:$E and so on.
This selection of $C:$C, etc is created in a separate cell “U1”. Using U1 in place of $C:$C does not work either
I’ve tried variations of INDIRECT but no success.
Any suggestions?
Thanks