Oct 03, 2022 01:22 AM
I am trying to figure out how to auto-populate fields in my Projects table using text from the linked Procedures table – preferably using some type of “apply procedure” button.
The Project table has two text field: Project Name and Project Details. There is also a field that links the Project to one of our Procedures. The Procedure table stores default text for the project name and project details that I want to apply to the new project when we specify the procedure to use.
After the fields are pre-populated with the default from the chosen procedure, I need these text fields to remain editable from that point forward so we can customize the work as needed for each client.
Not sure if this can be done outside of a script? Or if anyone has seen a script like this? Thanks!
Solved! Go to Solution.
Oct 03, 2022 03:30 AM
Hi Kenneth, you could create an automation that would trigger when a Project
record is linked to a Procedure
record AND its Project Name
and Project Details
fields were empty, and it would grab the relevant values from the linked Procedure
record and paste it into appropriate fields for the Project
record that triggered it
Oct 03, 2022 03:30 AM
Hi Kenneth, you could create an automation that would trigger when a Project
record is linked to a Procedure
record AND its Project Name
and Project Details
fields were empty, and it would grab the relevant values from the linked Procedure
record and paste it into appropriate fields for the Project
record that triggered it
Oct 03, 2022 06:23 AM
Thanks, Adam. I think I know how to do what you described. When building the automation, can I look through to the Procedures table to find the fields needed, or do the relevant fields need to be first added to the Projects table as Lookup fields?
Oct 03, 2022 06:24 AM
Down to your preference, really
I’d lean towards the former as then you wouldn’t have to have extra fields in your Projects
table
Oct 03, 2022 06:25 AM
Totally agree! I thought it was necessary and it creates too many extra fields. Thank you!