I'm having an issue using the normal column names in my collect function when trying to write to a sharepoint list. Its telling me on the button where the collect function is triggered onselect, that the column does not exist. The names match both in the app and the sharepoint list.
Problem:
Collect(
CollectShiftReport,
{
'Date and Time of notification': DataCardValue3.SelectedDate
}
);
Collect(
'Shift Report',
CollectShiftReport
)
No Problem:
Collect(
CollectShiftReport,
{
'OData_x0023_x0020_Date_x0020_and: 'DataCardValue3.SelectedDate,
}
);
Collect(
'Shift Report',
CollectShiftReport
)
Why do I have to type the crazy long name in???