Hi All,
I am trying to populate Date column based on the "Status" choice column.
Condition is If Status = Complete or Cancelled populated date = Now(), Whenever the status is changed either from Complete or Cancelled it should set the date column to blank.
So far, the logic works on my editable form. whenever it toggle for complete or cancelled the date populates and Status <> Closed or Complete it blanks the Closed date.

But when I submit() the ticket and view in the gallery its doesn't reflect.

I have the following code on the default date field for "Closed Date" Card.
If(DataCardValue46_2.Selected.Value="Cancelled",Now(),If(DataCardValue46_2.Selected.Value="Complete",Now(),If(DataCardValue46_2.Selected.Value<>"Complete",Blank(),If(DataCardValue46_2.Selected.Value<>"Cancelled",Blank()))))
Thanks for any help!