Hi!
I have a question on which approach is better performance wise given the following the situation:
01 - Use the same file and Apps Script all the way
- Save tab data into 3 other tabs (about 150 columns worth of data each and 5 rows at the most);
- Bring the data from these tabs for edits and save back into them;
- All the "processing gets done in one file"
02 - Save the form tab data into another file
- Import these tabs via IMPORTANGE(), so that when an edit is needed, the script goes to the same file for fetching the data instead of bringing it from another file.
- When saving, it puts the data into the other file.
I am wondering if having IMPORTANGE() bring the data is less performant than having it all run on the same file.
Thanks for your attention!