Thanks for all the great content! I have a desired outcome and I’m not sure how to achieve it. Well, maybe 2 requests for help.
How do I remove the creator email from my apps? On start up, users are required to “accept” and it says the creators email address. I’d like to not have my private email displayed.
Id like notifications in a read-only table. The factors change automatically based on equations and live data pulled into the table from google sheets. When a cell turns from “no” to “yes” I’d like to be notified with a push notification. Can this be done? The file isn’t being updated or edited by a person - just a formula. That seems to be impossible
How do I remove the creator email from my apps? On start up, users are required to “accept” and it says the creators email address. I’d like to not have my private email displayed.
That message will only ever display the app owner’s email address. To display a different email address, the app must be owned by that other email address.
Id like notifications in a read-only table. The factors change automatically based on equations and live data pulled into the table from google sheets. When a cell turns from “no” to “yes” I’d like to be notified with a push notification. Can this be done? The file isn’t being updated or edited by a person - just a formula. That seems to be impossible
Correct, it is impossible: AppSheet can only respond to data changes made by or through AppSheet; AppSheet cannot respond automatically to changes made directly within the spreadsheet itself.
AppSheet cannot respond automatically to changes made directly within the spreadsheet itself.
@Steve
May I humbly add this option with your kind permission:
Provided you construct a script within the spreadsheet and enclose the code within an onEdit(e) or onChange(e)simple trigger which makes an UrlFetchApp call to the AppSheet REST API, then it seems it’s possible.