Hi @cborde3 ,
Record cannot compare with Record in the condition, so ThisItem = varEditItem is incompatible. For your scenario, you need to add a column to the data source with default false values, on edit button update the value of own entry to true.
Gallery Items:
Your Data Source that includes a Y/N column with false values in it. I assume the column called "Editable".
OnSelect of Edit button:
Update(YourDataSource, ThisItem, {Editable: true})
DisplayMode of Controls within Gallery:
If(User().FullName = ThisItem.Operator && ThisItem.Editable, DisplayMode.Edit, DisplayMode.View)
OnSelect of the Save button:
Patch(YourDataSource, ThisItem, {Column1: Control1.Text, Column2: Control2.SelectedDate, Editable:false})
Best regards,