Rank and score with INDEX and MATCH
Explanation In this example, the goal is to assign points based on a ranked score. This is done by looking up the correct number of points to assign with INDEX and MATCH in thetblPointstable. Because Katrina’s rank is 3, MATCH returns 3, which corresponds to row 3 intblPoints. MATCH returns this position directly to theINDEX functionas therow_numargument. The Points column oftblPointsis provided forarray: INDEX returns 10 as the points awarded to Katrina....