Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have created a text object with following code “=date(now()) “ which displays today’s date (01/10/2013).
But I want something like this: 01 October 2013. Can anyone tell me how to do it ?
Thanks
Hi
Try;
=date(Now(), 'DD MMMMMMM YYYY')
Excellent, Working fine.Thanks Steve!
Try to avoid using the now() function in the UI. The reason it that it will be evaluated every second.
Best practice if you wish to reference the date, use today() function instead.
date(today(), ' DD MMMMMMM YYYY')