
Announcements
Hi All
In power apps I have a Edit form that users capture case related information they go and select date when the Incident occurred.
Once completed form is saved I allow users to edit information by using the
formula Reset Form(datRPEditIsolation);Navigate('Isolation Case Form',ScreenTransition.None).
When the form opens if I had selected the date 8 April 2020 it does not keep that date it reverts back to the default date as I have the date property default set as Today().
How can I prevent this from happening ? Any ideas
The date captured
Reverts back to default date
In the Default of the DatePicker:
If(Form1.Mode=FormMode.Edit, Parent.Default, Today ())
------------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.