excel - Search for staff ID in list -


i have 2 columns in excel 2010 spread sheet 1 containing staff id numeric , second column contains staff id , name e.g.

id                            staff name & id 1234                          manager 1234 bloggs 3456                          admin 1235 baker 1235 

the list of id's list of people have attended meeting. want able tell if staff member(s) has been @ particular meeting.

please help?

supposing id's 4 digit long, enter column after name column:
=iferror(match(value(mid(c2,find(c2," ")+1,3)),a:a,0)>0,false)

where column contains id's attended , column c contains names formatted in question.


Comments

Popular posts from this blog

symfony - TEST environment only: The database schema is not in sync with the current mapping file -

twig - Using Twigbridge in a Laravel 5.1 Package -

jdbc - Not able to establish database connection in eclipse -