excel - Display text in cell relative to matching cells in chosen area -


this problem have has been bother , nice if possible. have list of numbers (1-58) (a6:a63) , next them list of names (b6:b63) need formula in cell e4 , looks cells in range a6:a63 match cell e3, once found display in cell next cell matched e3. need work e3:bj3 way can see use if function. =if(e$3=1,"a",if(e$3=2,"b",if(e$3=3,"c",etc))) there easier way? have pictures here : http://imgur.com/a/nj4h9

try this:

e4=index($b$6:$b$63,match(e3,$a$6:$a$63,0)) 

or this

e4=vlookup(e3,$a$6:$b$63,2,0) 

then copy e5 , right.


Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -