Hi,
When I create a global variable with this structure:
Set(glbVar, LookUp(table, ID = x))
It is possible to update only one of the attributes as needed?
I've been trying to do something like this
Set(glbVar, Patch(glbVar, {Att1: "bbb"}))
But I get an incompatible with the type of values in other places in the app error.
The glbVar is fetched from a table in SQL and I'm trying to avoid referencing controls from other screens by storing the changes in this glbVar. Also, the gblVar record has about 15 columns, with string, number and date types.
Thank you,
Daniel