I am trying to create a cross reference formula that will link information from one sheet to another.
The first sheet (Roster) that has a bunch of position data, including the position number.
The second sheet (Validation Form) will be collecting additional position data over the course of the next year and it also includes the position number.
As users submit information for a position number with the Smartsheet Form, I need a formula that will capture that information from the Validation Form sheet in the record for that position number on the Roster sheet.
This is the formula I am currently on:
=INDEX({Validation Form Range 1}, MATCH([Position Number]@row, {Validation Form Range 2}))
It worked on my test row, but when I made it a column formula, it applies the result from the bottom record on the Validation Form sheet rather than looking for the correct value. Perhaps it is because the other position numbers are not yet populated on that form page?? Is there a way to have it return blank ("") if the position number is not found on the form page?