I'm trying to build an app with power apps, I created a form where I collect data and then create a new object to store it in a collection, the problem is that i need to be able to modify the properties of that object and I can't.
I'm using Set()
to create the object with all the properties already filled, like this :
Set(newObj, {property1: value, property2: value, property3: value; ...})
But whenever I try to Patch it to modify or add properties it does not work, nothing is added or modified
I'm doing Patch like this :
Patch(newObj, {newProperty: value, propertyToModify: value})
Do you know what i'm doing wrong ?