Hi
I'm trying to pass several checkbox boolean values from powerapps to powerautomate. My flow triggers fine but inside the flow all the values are coming through as false even when checked in the app.
On my app I have a submit button which launches the flow correctly this is what I have in the OnSelect property:
SubmitForm(SharePointForm1);
'UpdateData'.Run(SharePointForm1.LastSubmit.ID,CheckboxJan.Value,CheckboxFeb.Value,CheckboxMar.Value,CheckboxApr.Value,CheckboxMay.Value,CheckboxJun.Value,CheckboxJul.Value,CheckboxAug.Value,CheckboxSep.Value,CheckboxOct.Value,CheckboxNov.Value,CheckboxDec.Value)
On the flow side I am using the PowerAppsV2 trigger with each checkbox having an input yes/no.
Any pointers on where I'm going wrong? Thanks in advance!