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: 
MuraliPrasath
Creator III
Creator III

How to ignore unwanted things in DATE format.

3456556.PNG

I just want to ignore these '0000-00-00' how to achieve this?

1 Solution

Accepted Solutions
avinashelite

if its for only one value then it would be

if(date<>'0000-00-00',date)

View solution in original post

4 Replies
avinashelite

if its for only one value then it would be

if(date<>'0000-00-00',date)

sunny_talwar

If you need to this in the script you can do like this:

Table:

LOAD blahblah,

          DATE

FROM Source

Where DATE <> '0000-00-00');

MuraliPrasath
Creator III
Creator III
Author

Thanks Avinash 🙂

avinashelite

Your always welcome