Nana Yildizian 31.Jul.18 11:05 AM a Web browser Domino DesignerAll ReleasesAll Platforms
I would like to get the exact creation date of the document.
I have a computed when composed field on the form with the following value @Created. With this, I get an output of 1/3 of the documents with the correct/exact creation date and the rest of the documents with irrelevant dates.
I tried to put another computed when composed field with the following value
@If(@Day(@Now) < 10; "0" + @Text(@Day(@Now)); @Text(@Day(@Now))) + "/" +
@If(@Month(@Now)<10; "0"+@Text(@Month(@Now)); @Text(@Month(@Now))) + "/" +
@Text(@Year(@Now))
which again has similar output like the other field, i.e. with only 1/3 of the documents having the correct creation date, the others with various irrelevant dates (different from the field with the @created value).
1/ Why is this inconsistency happening?
2/ How can I get the exact creation date of the document?