contents embed

M

Mery

On my first sheet1 there are names of employees into the column B.
On the second sheet2 I need type in keys into the column A, than column B
needs recognize key and automatic typs in name of employee with first name
and name.

How can I to do it?

Can somebody help me and solve this problem?
As always I am greatful for your help,

Mery
 
P

Pete_UK

You need to have a unique ID number for each employee which can be
listed in Sheet1 column A along with the names in column B.

Then when you enter an ID number into A1 (say) of Sheet2, you can put
this formula in B1:

=IF(A1="","",IF(ISNA(VLOOKUP(A1,Sheet1!A:B,2,0)),"n/
a",VLOOKUP(A1,Sheet1!A:B,2,0))

This will return the name if the ID number exists, otherwise it will
return the message "n/a".

Hope this helps.

Pete
 
M

Mery

I am very happy ,problem solved and I can continue work,
once again, thanks verry,very much

Regards,
Mery


Korisnik "Pete_UK" napisao je:
 

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