Hey All,
I have a form. In the individual datacards I have a Date Picker and a checkbox. If the record(data source 'Renewals', excel sheet) says "MTM" it is supposed to click the checkbox, if it has a date I want it to input the Date Picker, if its blank, remain blank(unless changed). I am having issues linking it together because I am getting the incompatible records: DateTime,Text warning on each of them.
Checkbox:
Default: If(ThisItem.'i-Communicate'="MTM", true, false)
OnSelect: Patch(Renewals,BrowseGallery1.Selected,{'i-Communicate':Checkbox1})
DatePicker:
DefaultDate: ThisItem.'i-Communicate'
OnSelect: Patch(Renewals,BrowseGallery1.Selected,{'i-Communicate':DatePicker1.SelectedDate})
Here is a screenshot of one of the datacards as well, for reference:


Is there a solution out there to make it read both? If I try updating it on a test user, it gives me a runtime error for the patch.
Thanks,