Question : Finding a match, copy multiple data feilds from one sheet to another sheet/cells

I am still learning to work in excel. I have been trying to read others vba codes on how to maybe do this but I have found no luck and need to get this asap.. Basically what I need a vba code that will match the IP address from the HP Web JetAdmin Exported Device sheet to the ps1 sheet. Then copy the Model/MacAdress to the corresponding from HP Web JetAdmin Exported to the ps1 sheet to fill in those fields. I have attached the sample sheet. The full sheet has like 500 on it and the thing is no all of the IP addresses are going to match cell for cell. So thats where I am really struggling. Thanks for your guys help!!
Attachments:

Answer : Finding a match, copy multiple data feilds from one sheet to another sheet/cells

No problem.

Go to sheet "ps1" and in cell E2 paste this:

=IF(ISNA(VLOOKUP(C2,'HP Web Jetadmin Exported Device'!$A$2:$C$1000,2,FALSE)),"",VLOOKUP(C2,'HP Web Jetadmin Exported Device'!$A$2:$C$1000,2,FALSE))

Then use the fill handle to drag down your column.

Go to sheet "ps1" and in cell G2 paste this:
=IF(ISNA(VLOOKUP(C2,'HP Web Jetadmin Exported Device'!$A$2:$C$1000,3,FALSE)),"",VLOOKUP(C2,'HP Web Jetadmin Exported Device'!$A$2:$C$1000,3,FALSE))

Then do the same and use the fill handle to drag down your column.

The formulas have been entered in columns E and G because they are your columns for Model and MAC Address, respectively.
Random Solutions  
 
programming4us programming4us