Say, I create a Table in a global variable via:
Set(MyTable, Table({Name: "John", Age: 30}))
Question 1: How do I modify the age of John? Following doesn't work at all, nor did Patch()
UpdateContext({MyTable: {Name: "John", Age: 32}})
Question 2: How do I create a new entry if a person does not exist? (Name here acts as an UID)
UpdateContext({MyTable: {Name: "Tim", Age: 19}})