Link to home
Start Free TrialLog in
Avatar of nav2567
nav2567Flag for United States of America

asked on

Compare column in Excel.

Hello,

I just posted a question but the solution I got does work work 100% so I am re-posting this.

********************************************************************************************************************************

I have the attached spreadsheet which I want to find the OS of each computer in column A using column D and column E.  

For example, computer 1 in column A appears in column D, I want the OS in column E being copied to column B.  

Please advise a formula I can use in column B.  

Please note that I have about 3000 rows in the spreadsheet.  

Many thanks.
OS-searchup.xlsx
Avatar of Arana (G.P.)
Arana (G.P.)

=VLOOKUP(A2,$D$2:$E$7,2,FALSE)
or
=IFERROR(VLOOKUP(A2,$D$2:$E$7,2,FALSE),"")
ASKER CERTIFIED SOLUTION
Avatar of Saqib Husain
Saqib Husain
Flag of Pakistan image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
You may try this...
In B2
=IFERROR(VLOOKUP(A2,D:E,2,0),"")

Open in new window

and copy it down.

Btw if your main concern is, why the formula doesn't return Windows 10 in B5, that's because computer6 (A5) doesn't match with computer 6 (D7).

Avatar of nav2567

ASKER

Thanks, everyone!!!