Dear sir,@KIM Chanthan Interesting question. You can use MODE formula to find the most frequent item in a list, but it works only for numbers. So we use a pair of INDEX & MATCH to get what we want. For your data, this formula works:
=INDEX($A$2:$A$13,MODE.SNGL(MATCH($A$2:$A$13,$A$2:$A$13,0)))
You may use MODE.MULT if you want to get more than one manager's name in case of ties. Replace with MODE if you are using this on a older version of Excel.
Hi Sir,@KIM Chanthan Interesting question. You can use MODE formula to find the most frequent item in a list, but it works only for numbers. So we use a pair of INDEX & MATCH to get what we want. For your data, this formula works:
=INDEX($A$2:$A$13,MODE.SNGL(MATCH($A$2:$A$13,$A$2:$A$13,0)))
You may use MODE.MULT if you want to get more than one manager's name in case of ties. Replace with MODE if you are using this on a older version of Excel.