excel - Find text from another column and replace them with adjacent values -


for example:

column    column b           column f  column g    50          61                 50         1.9    63          69                 61          0    72          74                 63         1.8                                   69         1.96                                   72         2.1                                   74         2.5 

column g has values of column f.

i want find text in columns , b using text in column f , replace using text in column g result:

column    column b           column f  column g    1.9         0                  50         1.9    1.8         1.96               61         0    2.1         2.5                63         1.8                                   69         1.96                                   72         2.1                                   74         2.5 

assuming cells numbers (as shown in example), convert them 'text' 'number' format. then:

type on c1:

=vlookup(a1,$f$1:$g$6,2,0) 

type on d1:

=vlookup(b1,$f$1:$g$6,2,0) 

drag formulas other rows belonging same columns.

here explain how vlookup formula works.


Comments

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -