Mar 10, 2021 09:57 AM
I have a base with several tables of school programs that students can sign up for through a Jotform. I do not want to merge these tables into one because each program has various data/fields that are unique to it. However, there are a set of fields that are the same, such as those concerning student personal info (email address, phone number, address, etc.).
I would like a single script that can do some processing on such fields that are named the same across multiple tables using buttons. In scripting, typically I set the table explicitly via something like
let table = base.getTable(“Table Name”);
I am wondering if there is any way I can either:
I know I can make multiple copies of a script and just change the base.getTable() part, but I’d rather keep this as a single script that works on multiple tables. Any suggestions? Thanks!
Solved! Go to Solution.
Mar 10, 2021 10:04 AM
Mar 10, 2021 10:04 AM
Mar 10, 2021 10:19 AM
That’s exactly the thing that I overlooked! Thank you!