Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Number 41564 to date

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')
5 Replies
Not applicable
Author

Remember to change your date format in your edit-script to DD-MM-YYYY

or try Date(NUM#(DebDocumentBetaalDatum),'DD-MM-YYYY')

rbecher
MVP
MVP

Just use:

date(date#([DebDocumentBetaalDatum]),'DD-MM-YYYY')

Astrato.io Head of R&D
Not applicable
Author

Hi,

Please Try this

Date(Num(Date#( [DebDocumentBetaalDatum],'DD-MM-YYYY') )) As FieldName

Hope it helps you

Clever_Anjos
Employee
Employee

Maybe your DebDocumentBetaalDatum has some spaces,

I would do

date(trim(DebDocumentBetaalDatum),'DD-MM-YYYY')

Anonymous
Not applicable
Author

You don't need to convert anything.  Just use number presentation as date.  It is on the Document Properties, Number.

Regards,

Michael