Hi,
I have an error popping up when I try to patch an excel sheet. Here is the code.
Patch(
Table2,
{
Name: Text_Name.Text,
Place: Place.Text,
Number: Dropdown_Num.Selected.Result,
Code: ComboBox_Code.Selected.Code,
StDate:TextInput_DSTT,
StTime:TextInput_TSTT,
EdDate:TextInput_DETT,
EdTime:TextInput_TETT
}
)
The errors I get are:

The StDate Column in my excel sheet is formatted to a 'Date' format and I'm wondering if that is affecting it. I need it to show a date format in the excel sheet and not some general text. I've also tried; .text, .format(date()), .selected.value.
Any ideas? Thanks for looking