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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to change date format


Hi,

I have data format in SQL table as 15/10/2013. so when I am loading data it is taking in the same way in qlikview chart.

Is it possible to show date as 15 Oct 2013?

Please can anyone let me know.

Thanks.

1 Solution

Accepted Solutions
jerem1234
Specialist II
Specialist II

Date(Yourdate, 'DD MMM YYYY') should do it

View solution in original post

3 Replies
jerem1234
Specialist II
Specialist II

Date(Yourdate, 'DD MMM YYYY') should do it

Not applicable
Author

Thanks and it's working.

nilesh_gangurde
Partner - Specialist
Partner - Specialist

Create new Field as mentioned below:

Load

Date(DateField,'DD-MMM-YYYY') as DATE;

Select * From DatabaseTableName;

Hope this will help you.

-Nilesh