My app has a series of checkboxes. I need the true/false values to Patch to an SP list. I have corresponding Yes/No columns in SP for these. When I patch, the value of every checkbox shows true. There is a snippet of the code below:
Patch(
ContactReportData,
Defaults(ContactReportData),
{
Title: RetailerSearch.Text,
RtlName: RetailerNameInputBackup.Text,
VisitType: VisitTypeSelection.Selected,
VisitStartDate: StartVisitDate.SelectedDate,
VisitEndDate: EndVisitDate.SelectedDate,
RtlCertified: CertifiedToggle.Value,
RtlCertDate: CertEvalDatePicker.SelectedDate,
RtlPrincipalNA: RPCheckNotApplicableCheck.Value,
RtlPrincipal: RPEntry.Text,
RtlPrincipalWasNotPresent: RPNotPresentCheck.Value,
RtlPrincipalDay1: RPDay1Check.Value,
RtlPrincipalDay2: RPDay2Check.Value,
RtlPrincipalDay3: RPDay3Check.Value,
RtlPrincipalClosingMeeting: RPClosingMeetingCheck.Value,
The bolded values Patch as True when they are not checked.
Any ideas?