excel - Compare multiple columns and update data if matched -
using excel 2013 , need figure out how compare , update values. if able help, appreciate it!
in column a, have new list of 6000+ user names. in column b, have new phone number associated each user account. in column d, have old list of 6000+ user names. in column e, have old phone number associated each user account.
i need in figuring out how compare data in column , column d. if match, need have value in column e updated match value in column b.
any appreciated
try
=iferror(if(match(d1,$a:$a, 0), index($a:$b, match(d1,$a:$a, 0), 2), e1), "")
and put in f1, drag down. see if works you. once it's done, copy , paste special values e.
Comments
Post a Comment