how to search for a same name in two excel sheets

K

Krishna

Hi,
i have two excel sheets, and in one sheet the server and it's owner name is
there, and in other server name is there, my requirement is can i check for
the same server name in both the excel sheets and update the field in second
excel sheet with its owner name?
 
F

fredg

Hi,
i have two excel sheets, and in one sheet the server and it's owner name is
there, and in other server name is there, my requirement is can i check for
the same server name in both the excel sheets and update the field in second
excel sheet with its owner name?

You have posted this message to the wrong newsgroup.
The access in this groups name refers to Microsoft Access, a database
program.
Please repost to the correct newsgroup for the Excel version you are
using. I would suggest you include your Windows and Office version
number in the message.
 
S

Smartin

Krishna said:
Hi,
i have two excel sheets, and in one sheet the server and it's owner name is
there, and in other server name is there, my requirement is can i check for
the same server name in both the excel sheets and update the field in second
excel sheet with its owner name?

Hare Krishna,

You didn't say whether you would like to use Access to do this. If so,
create linked tables to each sheet and use an update query similar to
the following:

UPDATE S2 INNER JOIN S1
ON S2.SERVER = S1.SERVER
SET S2.OWNER = S1.OWNER


If you would like to do this with Excel this isn't the best place to ask
the question, but I would suggest VLOOKUP will probably work.

Namaste,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top