Hello,
how can I print date with required format? If I print only date, I can use Properties->Text Format->Date and then choose some format. But I want to print text like this: "Date of print: {Today}". Only function I've found is DateToStr but it doesn't have format string as parameter.
Thank you
date format string
date format string
Code: Select all
Date: {Format("{0:MM.dd.yyyy}", Today)}
Code: Select all
Date: {Today.ToString("MM.dd.yyyy")}