Hey @
Even though you're using galNotes.Selected to populate the gallery and fields like Comments, if the galNotes.Selected.Comments value is not part of the gallery’s fields or has not been fetched explicitly, it may be null at the time of patching — and Patch() will interpret that as "clear this field".
try patching all the fields and see if that will make any difference
Patch(
'MyList',
LookUp('MyList', ID = galNotes.Selected.ID),
{
InitialsRead: varInitials,
Comments: galNotes.Selected.Comments,
People: galNotes.Selected.People,
Date: galNotes.Selected.Date
}
)
Let me know if you have any question
Cheers