Hi All,
I am creating an app for offline mode and trying to write the values into CDS entity having datatype as Two Option Set from powerapps. I have tried multiple ways but didn't worked for in offline mode. I am using that in patch and collect function. I am using toggle button for that. Firslty, I used Toggle1.Value, it is working fine in patch but giving error in collect. Then I tried this-
If(Toggle1.Value, 'IsOverdue (TaskLists)'.Yes, 'IsOverdue (TaskLists)'.No)
this is not giving me error in both functions but it is not working in offline mode. Also, tried using dropdown and combobox still not succeed.
Referred these links as well https://powerusers.microsoft.com/t5/Common-Data-Service-for-Apps/CDS-2-choices-field-toggle-instead-... and https://powerusers.microsoft.com/t5/Webinars-and-Video-Gallery/PowerApps-Canvas-Using-OptionSets-and...
How can I achieve that?