Hello @StalinPonnusamy ,
Could you please advise why your solution does not work for me?
My toggle is called "Toggle_Change to New" and I need the timestamp when and the person who checked the toggle have in two different text fields ("Saved as New" and "Person Saved as New").
Toggle_Change to New:
On Check property: Set(timestamp,Now()) && Set(PersonCreated,User().Email)
On Uncheck property: Set(timestamp, Blank())
Text control "Saved as New":
Default property: If('Toggle_Change to New'.Value,timestamp, Parent.Default)
Text control "Person Saved as New":
Default property: If('Toggle_Change to New'.Value,PersonCreated, Parent.Default)
But every time when I edit the item, the timestamp changes again and I just need to have the timestamp on when the status changed from Draft to New...
Thank you very much in advance.