Afternoon
I am trying to patch from a date picker to my SP list. The date picker is a new addition to my PowerApp, I already have a patch to two other columns in my SP, now I need to patch the date. I have added the additional code, and the coding is below. The WorkPlan and ProductTitle patch to SP fine, however the date doesn’t. However, no errors are shown.
Patch(
JSConsolidationProductTitle,
{PT_WorkPlanChoice: DD_WorkPlansAll.Selected,
ProductTitle: {
Value: TextInput_AddNewProject.Text,
HL_ProjectStartDate: HLStartDate.SelectedDate,
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SpListExpandedReference"
}
}
);
Navigate(MenuScreen)
HL_ProjectStartDate is my SP Column, HLStartDate is the datepicker in the App.
Thanks in advance
Jamie