How to find the match and return the match in another column in excel -
i have 2 columns- column extends upto 11027(values) , column extends 42000(values).both columns contains code details.
something this
a b q123 as124 as124 gh456 ff45 q123 dd1 dd2 xx2 xx3 xx4 , on...
i want find if names in column exists in column b return b value in column. example if finds match "q123" in b list has in c list .
you can pretty using vlookup function.
type first cell in column c: =vlookup(a2,b:b,1,false)
this function value in cell a2, use first column in range find value in a2 (in case, put 1 column down, column b), return corresponding value in "1" (first) column, , included column b, , "false" requires value in column b exact match.
then, fill down column c until has same amount of rows column a. if value in column not found, it'll return #n/a, , can delete values column c.
Comments
Post a Comment