@leyburn19
I was able to patch to a collection without issue, ie
Patch(
colDates,
Defaults(colDates),
{
ID: Value(TextInput1.Text),
sel_date: DatePicker1.SelectedDate
}
)
However, If I tried entering dates like 3/5/21 by typing it would patch blanks. Seems it maybe tied to the Format property? Testing I tried by typing in Dates:
Set Format to: "dd/mm/yyyy"
Patch Date: 5/3/2021 --> works fine
Patch Date: 5/3/21 --> Patches a blank
Set Format to: "dd/mm/yy"
Patch Date: 5/3/2021 --> Patches a blank
Patch Date: 5/3/21 --> works fine
For both the above Format settings, Patch worked fine when selecting from Date Picker.
I guess the other thing to consider is a data source issue, I've just used a collection here.