Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I have a datefield with values 41***, however I want to convert them to DD-MM-YYYY
How can I do this? I tried this, but it doesnt work:
date([DebDocumentBetaalDatum],'DD-MM-YYYY') |
Remember to change your date format in your edit-script to DD-MM-YYYY
or try Date(NUM#(DebDocumentBetaalDatum),'DD-MM-YYYY')
Just use:
date(date#([DebDocumentBetaalDatum]),'DD-MM-YYYY')
Hi,
Please Try this
Date(Num(Date#( [DebDocumentBetaalDatum],'DD-MM-YYYY') )) As FieldName
Hope it helps you
Maybe your DebDocumentBetaalDatum has some spaces,
I would do
date(trim(DebDocumentBetaalDatum),'DD-MM-YYYY')
You don't need to convert anything. Just use number presentation as date. It is on the Document Properties, Number.
Regards,
Michael