Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
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

Labels (1)
1 Solution

Accepted Solutions
swuehl
Champion III
Champion III

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
Champion III
Champion III

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.