Hi @lesotho_kid ,
Regarding the issue that you mentioned, I think this issue is related to the Default value you set in the DateValue5, HourValue1 and MinuteValue1control.
The Now() function would be calculated immediately when type the Now() function in above these controls, and this function could only be executed once time, it would not be updated automatically.
When you add a new entry (the Edit form is in New Mode), the Now() function would be executed once time. And when you submit your form data, the Now() function would not be executed once again.
As an fixed solution, I agree with @Mr-Dang-MSFT 's thought almost. You could consider store current date time value into a variable. And when you submit your form data, update this variable to current date time value.
I have made a test on my side, please try the following workaround:
Set the OnVisible property of the Edit form screen to following:
Set(CurrentTime, Now())
In your Edit form, Set the DefaultDate property of DataValue5 to following:
CurrentTime
set the Default property of the HourValue1 to following:
Text(Hour(CurrentTime),"[$-en-US]00")
set the Default property of the MinuteValue1 to following:
Text(Minute(CurrentTime),"[$-en-US]00")
Set the OnSelect property of the "Submit" button to following:
Set(CurrentTime, Now()); // Add this formula to update the CurrentTime variable
SubmitForm(EditForm_InvestmentChecklist)
Please try above solution, hope it could solve your problem.
Regards,