Are there temporary variables or is it possible to implement a temporary column in AppSheet?
The doubt has arisen, because I need a temporary variable. Is there any alternative solution, I’ve been looking and I haven’t found anything similar.
If it does not exist, would the solution of creating a new column or a new sheet called “temporary data” be feasible?
Thank you! All the best!
Hi @JuanIsidoro
“If it does not exist, would the solution of creating a new column or a new sheet called “temporary data” be feasible?”
I would go for this solution indeed.
Create a new table with:
-
one unique row
-
columns: key, variableName1, variableName2, etc
-
update mode: “Update only”
Everytime you will want to refer to it, use:
ANY(myVariableTable[variableName])
3 Likes
You may also want to take a look at the option of USERSETTINGS
https://support.google.com/appsheet/answer/10106760?hl=en
1 Like
There are always solutions or alternative ways.
Thank you very much for the recommendation! ^^
I’ll give it a thought to see if it’s feasible dynamically.
Thank you very much!
2 Likes
In addition to excellent suggestion by @Aurelien , another approach that faintly touches the user specific variables, you may want to familiarize yourself is User Settings.
https://support.google.com/appsheet/answer/10106760?hl=en
2 Likes