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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
anjali0108
Partner - Creator III
Partner - Creator III

Timestamp converting to num while loading

Hi All,

I am loading some fields including dates in QlikView.

When I am loading this without adding any filter conditions (i.e where clause), then it's loading perfectly as timestamp values, not numeric ones.

But, when I am using a where clause, in load for filtering data only from 2017 onwards, then it is converting all timestamp values in numbers.

Can anyone please tell me what's wrong here?

1 Reply
Qrishna
Master
Master

not sure what your script looks like.

You may want to try like this to avoid unwanted conversions of fields datatypes.

Table:

Load

A...

..

Date

from xyz

where  Year(Date) >=2017; //if you want to filter on date then use      : where  Date#(Date) >=Date#(YourDesiredDate).

if this doesnt work out for you,post your sample qvw or sample data.