I have the following formula in the OnSelect of the next arrow of a gallery (FavProd😞
Select(Parent)
;If(FavProd.Selected.ChkC=false,Set(VarChkC,false),Set(VarChkC,true)
;Navigate(Mixing,ScreenTransition.Fade)
The user has the option to save several settings back to an Excel file (saved in OneDrive), of which a checkbox "C" (ChkC) is one of those setting options.
What I am trying to do above is recall the user's selection from this Excel file to auto-populate the ChkC checkbox when that user selects a given favorite from the gallery. I assume my issue is with the following portion of the formula, but am not sure how to correct it:
FavProd.Selected.ChkC=false
The error I am getting is:

Side note: ChkC is the name of: a) the checkbox in question, b) the column name in the Excel file. Don't see this being an issue, but wanted to mention it to avoid confusion.