Forum Discussion
heyaburt
May 11, 2017Copper Contributor
MATCH or INDEX function
I have a spreadsheet with two columns labeled STUDENT IDs and STUDENT NAMES. I want to create a MATCH or INDEX formula in a block so when I input the student ID in one cell, the coresponding stude...
- May 12, 2017
Hi Mike,
you can use the following formulas
For Student Name (B15)
=INDEX($B2:$B11,MATCH($A15,$A$2:$A$11,0))
For Overall Score (C15)
=INDEX($S2:$S11,MATCH($A15,$A$2:$A$11,0))
For Final Grade (D15)
=INDEX($T2:$T11,MATCH($A15,$A$2:$A$11,0))
Hope this helps
Thanks
Yury
Yury Tokarev
May 12, 2017Iron Contributor
Hi Mike,
you can use the following formulas
For Student Name (B15)
=INDEX($B2:$B11,MATCH($A15,$A$2:$A$11,0))
For Overall Score (C15)
=INDEX($S2:$S11,MATCH($A15,$A$2:$A$11,0))
For Final Grade (D15)
=INDEX($T2:$T11,MATCH($A15,$A$2:$A$11,0))
Hope this helps
Thanks
Yury
heyaburt
May 12, 2017Copper Contributor
Thank you, Yury. It helps out quite a bit!
I appreciate it!
Mike
I appreciate it!
Mike