@Anonymous ,
You cannot use an Edit form with Defaults('Demo 2') as the Item - it will always be blank.
You need to tell the form which record to display. If you have a gallery showing your records, it can be
YourGalleryName.Selected
You could also set a reference on the Patch
Set(
varID,
Patch(
'Demo_2',
Defaults('Demo_2'),
Form1.Updates
).ID
)
Then your Edit form Item would be
LookUp(
'Demo 2',
ID=varID
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.