Hi @roncam,
How do you create a new record within your SP list? Using SubmitForm function or Patch function?
Could you please share more details about the data structure of your SP list?
Based on the needs that you mentioned, I think the Patch function could achieve your needs. If you want to update an existing record using Patch function, you must find the record you want to update firstly.
I have made a test on my side, please take a try with the following workaround:
Set the OnSelect proeprty of the "Start Time" button:
Patch(
"YourSPList",
LookUp("YourSPList", ID = "List Item ID"), /* <-- Find the existing record you want to update based on List Item ID*/
{
StartTimeColumn: Now()
}
)
Set the OnSelect proeprty of the "End Time" button to following:
Patch(
"YourSPList",
LookUp("YourSPList", ID = "List Item ID"),
{
EndTimeColumn: Now()
}
)
More details about the Patch function and LookUp function in PowerApps, please check the following article:
Patch function
LookUp function
Best regards,
Kris