Hello,
I had thought this would work....
I have a simple app - when a user navigates back to a submitted record I am using the same screen as they would use if they were submitting a new record.
I have a date and time field. In the new record I am auto populating the date and time using the following:
DefaultDate: If(!IsBlank(vRecord.'Date&Time'), Parent.Default,
Today())
The above works
But I cannot get the time to pick up the old data when vRecord is selected:
If(!IsBlank(vRecord.'Date&Time'), Parent.Default,
Text(Hour(Now()),"[$-en-US]00"))