If(Datacardvalue1.Text = "",
Reset(Datacardvalue1)
)
If(
Or(
DatacardValue30.Selected.Value = "Resolved",
DatacardValue30.Selected.Value = "Resolved - No Call Needed"
),
Now()
)
Reset(Datacardvalue1)
Set the OnChange
property of the DatacardValue30
(Status field) to check for the status change and update the Resolved Date
accordingly.
Use the If
condition to check if the Status
field has changed to 'Resolved' or 'Resolved - No Call Needed'. If true, set the Resolved Date
to the current time.
OnChange
property of DatacardValue30
: