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
Post a Comment