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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Date Formats

Can we can set date formats in QlikView?  Our Australian customers would like their reports to show the yyyy/dd/mm format.  We are under the impression date format is configurable by document. 

3 Replies
shane_spencer
Specialist
Specialist

Yes you can. The following line in the start of your load script sets format:

i.e.

SET DateFormat='DD/MM/YYYY';

You can also over-ride this at a field level.

Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

That's correct. You can set the default date format in the script: SET DateFormat='YYYY/DD/MM';


talk is cheap, supply exceeds demand
maxgro
MVP
MVP

at the start of the script you find some default you can modify

example

SET DateFormat='DD/MM/YYYY';

this is at the document level

at the statement level you can use the date function to override the document default

date(field, format)

date(field, 'YYYY/MM/DD')

detail here

QlikView Date fields