Hello again.
I created a canvas app that is connected to a sharepoint list. I have a screen that has a gallery on the left and form data on the right. One of the columns is a yes/no toggle. When the user chooses a yes/no, the choice reverts back to the original. The formulas that i am using are:
OnCheck: Patch('Letter Templates',LookUp('Letter Templates',ID=gal_EmpList.Selected.ID),{'Has the pdf been exported?':true,'Exported by whom':User().FullName,'Exported Date':Now()});
UnCheck: Patch('Letter Templates',LookUp('Letter Templates',ID=gal_EmpList.Selected.ID),{'Has the pdf been exported?':false,'Exported by whom':User().FullName,'Exported Date':Now()});
Default on the datacard: Blank
Default on field: If(ThisItem.'Has the pdf been exported?'= true, true, false)
When the user toggles, you can see in the gallery the one that was selected "blinks" and then goes back to the original choice.
Any ideas?
Thank you for your time!