I have a date and time that auto populate date, hours, minutes based on when a ticket goes to closed status. The code works and the date auto fills when a ticket is closed. However, when I go back into ticket details it repopulates the date and time to when I open the details page. I need the date and time to stay the date and time of when the status was first closed.
Current codes shown below:
Date:
If(Or(DataCardValue61_1.Selected.Value="Closed"),Today(),Blank())
Hour:
If(Or(DataCardValue61_1.Selected.Value="Closed"),Text(Hour(Now())),Blank())
Minutes:
If(Or(DataCardValue61_1.Selected.Value="Closed"),Text(Minute(Now())),Blank())
