Is it possible to build a sheet reference dynamically using a link (the sheet link or the sheet ID) that is pasted elsewhere on the row?
I am a specialized resource and use smartsheet to help prioritize my own tasks and add a bunch of extra data that I track. For my tasks that originate from customer-facing projects, my due dates come from the project timeline sheets for each project. Additionally, I may have tasks that I add on my own because they are not linked to a customer-facing project. If I paste the sheet ID/sheet link to the project timeline in each row for my tasks, can I build a sheet reference dynamically? I'm trying to pull in the due dates dynamically rather than by creating cell links one by one.
In semi-layman's terms, I'm trying to do the following in my due dates:
IF(isblank(sheet_id_column_on_current_sheet),"",INDEX(dynamically_created_sheet_reference_to_the_date_column_using_sheet_id_column_on_current_sheet,MATCH(taskID,dynamically_created_sheet_reference_to_the_taskID_column_using_sheet_id_column_on_current_sheet)))
I think in excel, it would be similar to the INDIRECT() function.