Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
So, I am loading data into QlikView from a DB2 database, and one field within the Database is a DATE field. However, when I load the data into QlikView, it does not recognise the date correctly.
Does anyone know how to fix this?
Thanks
Hi Beth,
what is your default QlikView date format?
SET DateFormat=...?
- Ralf
Hi, it is set to the Default 'DD/MM/YYYY'
What do you get with:
LOAD
Text(PROCESS_DATE) as "PROCESS_DATE";
SQL SELECT PROCESS_DATE FROM TABLE;
I get:
41311
41313
41525
HI,
Try this
LOAD
Date(Num(Text(PROCESS_DATE))) as "PROCESS_DATE";
SQL SELECT PROCESS_DATE FROM TABLE;
Regards,
Jagan.
Once again nothing appears in the drop down ![]()
Hi,
Can you attach the sample file.
Regards,
jagan.
Have solved this. It seems QlikView can't read date fields but can read TimeStamp fields.