Hi,
I have two sheets for 2 separate processes in our production workflow. For each of the sheets I have forms for people to fill out. I would like to have it where the 2nd sheet is able to pull data from the first sheet. The 2nd sheet needs to see some of the same data as the 1st, but I would like to make it that people don't need to enter the same information twice in a form. Data from the 1st sheet is copied to the 2nd sheet if the Sales Order (primary column) is the same. I can't use VLOOKUP since I need to do this for many columns. I tried using INDEX and MATCH, but as soon as I add another row in the 1st sheet, it messes up the linked columns in the 2nd one.
My formula:
=INDEX({Single Cell Seeding Range 8}, MATCH([Sales Order]@row, {Single Cell Seeding Range 2}))
How can I adjust this formula so that when I add new rows, it doesn't break the formula? Thank you for the help, it as always appreciated!