Is it possible to call a Google Sheets add-on as if it were a function in an Apps Script?
I am trying to automate a few steps like this:
- Import/append data from sheet 1 to main sheet 1
- Import/append data from sheet 2 to main sheet 2
- Merge values/append new values from main sheets 1 and 2 into main sheet 3
All of these steps are done with 2 add-ons. Ideally, I could call those add-on functions with a script and run the script with a button.
Is this possible?