Hello,
I have a master Smartsheet (sheet A) that contains a list of projects identified by NAME column and it also contains many other columns. Every project in the list will have a unique name.
I would like to use a column formula in Sheet B to pull all unique records of names from Sheet A in to Sheet B. My main goal is to automatically pull all new unique records from Sheet A in to Sheet B. In Sheet A and B, the column types are 'Text/Number'.
I have previously done something similar and it worked (only difference seems to be it was a Contact List in prior successful example), but I am hitting a roadblock now. I had used a helper column to log a Row ID.
=IFERROR(INDEX(DISTINCT({SheetA Project Name}), [Row ID]@row), "Add More Numbers")
Any suggestions?