Forum Discussion
- DavidHaweQrew TraineeIf the Status field is not logged, you could do this:
If(
[Status]="Completed",ToDate([Date Modified])
)
The danger is if the record is modified again on a later date, the later date will show.
If the Status field is a logged field, you can use Left and Right statements to isolate the date in the text of the logged field. - MeredithMoore1Qrew Cadetok but what if there is another condition... (I have no idea why this isn't working.)
If(
[Status]="Completed" and IsNull([Date Complete]),ToDate([Date Modified]),[Date Complete])