I have two smartsheets which I would like to tie information between. The primary sheet (Formula Test) has a column for "Date Submitted to AHJ". The secondary sheet (Submittal Log) breaks this down further into "Date Submitted (Local)" and "Date Submitted (State)" depending on the needs of the project. In the secondary sheet, have created a duplicate column of the same name as the primary sheet, "Date Submitted to AHJ", with a formula to calculate the max date in the row to give me one AHJ Date to source to the primary sheet. =MAX([Date Submitted (Local)]@row, [Date Submitted (State)]@row)
I would like the information to utilize the primary column of both sheets ("Job Number (YY-XXX)") to match the appropriate dates to projects.
I have attempted to use VLOOKUP to reference this value into the primary sheet using the formula: =VLOOKUP([Job Number (YY-XXXX)]@row, {Submittal Log Date Submitted to AHJ}, 1, false)
However, I get a "#NO MATCH".
Then I attempted to use INDEX MATCH to reference this value using the formula: =INDEX([Job Number (YY-XXX)]), MATCH([Date Submitted to AHJ]@row, {Submittal Log Date Submitted to AHJ},0)
And I get an "#UNPARSEABLE".
Is this because the value being referenced is a formula? Or have I made a mistake somewhere?