Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Convert Date in Script

Hi, how can i convert date in script from 08-OCT-10 to 08.11.2011 ?

Thanks

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Try using date format function DATE(), like

LOAD ...

Date(YOURDATEFIELD,'DD.MM.YYYY') as NEWDATEFIELD,

...

check out format codes.

Other way is changing the system variables DateFormat at the top of your script.

Hope this helps,

Stefan

View solution in original post

2 Replies
swuehl
MVP
MVP

Try using date format function DATE(), like

LOAD ...

Date(YOURDATEFIELD,'DD.MM.YYYY') as NEWDATEFIELD,

...

check out format codes.

Other way is changing the system variables DateFormat at the top of your script.

Hope this helps,

Stefan

Not applicable
Author

Thanks, That works fine.