Question: Please can you change a cell value on another sheet using Automation? Or perhaps a formula?
Reason: I want the project intake sheet to get updated automatically.
Details:
I am using the Project Management template on Smartsheet. In the Intake sheet (shown below) the BLUE columns are what each individual will need to create a project. Saving the entry generates a unique identifier – the project ID. This is good.
The Project Metadata sheet uses this project ID to populate cells. For example it uses the formula below:
=INDEX({Portfolio Summary Data}, MATCH($[Project ID]@row, {Project ID}, 0), MATCH([Project Name]$1, {Portfolio Summary Header Row}, 0))
Is it possible to create an Automation on the metadata sheet so that when the row is modified values in a specific cell can be copied over into a cell in another sheet? So, I modify the GarageRenovation project and my project status is sent over to the Project Intake sheet to overwrite whatever value was there. Effectively keeping the Project Intake sheet up to date automatically.
Alternatively, can I get the intake sheet to use whatever value exists in Project ID to search the entire workspace for a Project Metadata sheet with the same ID? Once found, the project intake sheet can reflect whatever date, project status, dashboard link, etc. that exists on the Project metadata sheet.
So instead of a manual link in from the metadata sheet like below:
It will be a formula like this:
=INDEX({All metadata sheets in this workspace}, MATCH($[Project ID]@row, {Project ID}, 0), MATCH([Project Status]$1, { All metadata sheets in this workspace Header Row}, 0))
Automating this will reduce the chance for error and aid in adoption of Smartsheet by our team. Having to ask project managers to manually link cells from the project metadata every time a new project is created will deter adoption.
Thank you.