Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
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