Copying form and data to new database that has field using @Created

I have copied a form into a new database. One of the fields uses @Created to capture the Date Composed. It is also Computed when created.

I am manually copying the data from the old to the new database and the Date Composed field keeps calculating to the current data/time. I am unfamiliar with lotusscript so is there anyway to fix this using formula?

Thanks in advance.

Subject: @if no date exists…

@created puts in the created date of the document. Youi are copying ove roducments, but when pasted they are technically “created” when they are pasted.

You probably want to change the formula to @if(fieldname=“”; @created; fieldname). If there is a value already in the field (the original created date), then don’t calculate a new date.