excel - Compare columns in two sheets -


i have 2 sheets in excel trying compare. bit convoluted hope explanation clear.

sheet 1 named 'mapping , sheet 2 named soa

i compare column d in 'mapping' column in 'soa'

where value in column d of mapping equal result in column of 'soa' enter corresponding text info column b of soa column e (which blank) in 'mapping'

column in soa in ascending order while column d not, , cannot be.

a sample data is:

sheet 1 (mapping)

a           b         c        d          e                                a1.3                                a1.1                                a1.2 

sheet 2 (soa)

a          b           c       d          e a1.1       yes a1.2       maybe a1.3        no a1.4       idk 

the result looking give me:

sheet 1 (mapping)

a           b         c        d          e                                a1.3       no                                a1.1      yes                                a1.2      maybe 

i have tried following formulas have not gotten luck

=if(countifs(('mapping'!d3:d466),=soa!a4:a136",soa!b4,"")) =if('mapping'!$d3:$d466=soa!$a4:$a136,soa!$b4:$b136,"")

thanks everyone, got working combo of of this. of issue nature of data receive


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -