Google-sheets – How to copy over a value from another worksheet depending on the adjacent column

formulasgoogle sheetsgoogle-sheets-arrayformulavlookup

I have two checklists of the same items in a different order in two separate sheets, and I want to only update one. Basically, I have two pages that look like this

enter image description here

enter image description here

And I want the? to be automatically replaced with the according to values in the other sheet. How can I do this?

Best Answer

=ARRAYFORMULA(IFERROR(VLOOKUP(E2:E, Sheet1!A2:C, 3, 0)))

0