I'm trying to run a script after every edit to remove the ` character that may be added after the edit. The edit of context is an AppSheet (Google cloud) submit. (It was previously a google form that I recently migrated).
It is an expense tracker app and a typical entry in the amount column is say, =1+2+3.3, in case the bill is for 3 items or simply 7, if it is a single item. When submitted, the first one comes as '=1+2+3.3 , which prevents excel from computing its value, which needs manual deletion of the ` character.
The solution that I thought is efficient is to run a google script that is triggered on onEdit to find and replace this `. Any leads would be really helpful in making some progress. Thanks in advance.