简体   繁体   中英

Excel - Index Match formula

在此处输入图片说明

Here what I have =INDEX(C:C,MATCH(G2,N:N,0)) but i know this wrong

I want to match by player name, team, wOBA ,Iso from left side (columns AI) to the right side (columns N - Q). Thanks for your help!

I assume from your pictures that you want to get TEAM, wOBA, iso from the name in column N.

If so, do this:

=INDEX(B:B,Match(N2,$C:$C,0))

then adjust for other columns.

If that is not your exact need, you can certainly see how this one works and modify as needed.

You could also get fancy and use one formula to drag through all your data set:

=INDEX($A$1:$I$9,MATCH($N2,$C$1:$C$9,0),MATCH(O$1,$A$1:$I$1,0))

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM