I have a sharepoint list and one of the columns is Date Time. In powerapps when I try to edit a form it displays the date correctly but the hours and minutes display as 0.
This is the default value for the hour and minutes
If(EditForm1.Mode=FormMode.New,(Right(Text(Now(), "[$-en-US]hh:mm"), 2)),Text(Parent.Default))
When it's a new form it displays the correct date and time, but when I try editing an existing record it loads the date but the time is set to 0.
I am thinking it might be something with Parent.Default ?