Hello,
I am creating a form in PowerApps and trying to make an entry for time mainly.
Here is one of the fields that I am adding:
arrive time in hour and minutes.
In the excel spreadsheet i have it formatted as "h:mm" but when I use the form it does the date plus time.
I used the toggle to hide the date field on the form.
When adding an "Add" button for new entries I get the following error:
"Incompatible type. The 'Arrival' column in the data source you're updating expects a 'DateTime' type and you're using a 'Error' type."
Here is the code:
Collect(LHData,{Date:TodayDate.DateTime,Customer:Customer.Text,Arrival:ArriveHour.DateTime,Arrival:ArriveMinute.DateTime,Pallets:Pallets.Number,Seal:SealNum.Number,Notes:Notes.Text})
Not sure if I had to make two collect codes for the hour and minute or just one? I tried both and it didn't work.