I want to keep task sheets for six projects. I want them to feed to a "master" sheet. I have successfully created the automations to copy tasks as added to the six sheets to the master. Where I am struggling is in updating the master as tasks move from "new" to "in process" to "complete". I don't want to use an automation because I do not want to add duplicate rows. I just want to update the rows. I can use vlookup but it can only look at one sheet. I need a formula to look at six sheets and find the matching task so I can update the status. I have successfully used IFERROR to create a formula that looks at two sheets:
=IFERROR((VLOOKUP([Task Name]1, {Project1 Tasks Range 1}, 2, false)), (VLOOKUP([Task Name]1, {Project2 Tasks Range 1}, 2, false)))
This formula looks for the task on Project1. If it doesn't find it, it generates an error and looks at Project2. If it finds the task on Project2, it updates the status. I tried to nest it again to look at a third sheet, but I cannot get it to work. Has anyone tried anything like this? Is there a better way to parse multiple sheets? Thank you in advance.