I have two excel sheets. The first is a job that has project number and project manager. The interesting part is that the project manager field can have multiple project managers like below:
Project Number Project Manager
123 John Doe
1234 John Doe, Jane Doe
My question is I am currently looking up the project manager in the first sheet, finding that name on the second sheet and grabbing the email. Now I run into the issue when there are multiple project managers. How do I adjust this in my process?
Yeah that part doesn’t really matter. Im just using a fake scenario. What I really want to know is how to solve the Multiple Project Managers in one column. How do I look up both of their emails.
Even if it were employee number instead of project manager names. The issue is still there.
Well tell us how it should be handled. That’s part of analyzing a process. Should it throw an exception? Always choose the first one? Take both emails and put them in a list? It’s entirely up to you and your process.
1/ take “project_manager_field” from first sheet
2/ split it into individual managers - it will give you array of “managers” array_of_managers = split(project_manager_field, ",")
3/ for each manager in the array_of_managers find the name in second sheet