Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
mario-sarkis
Creator II
Creator II

Exclude garbade Data

Dear all

here is my example and hope that you can help:

I have a field PeridoDate number form:

i.e.: I have the below field (PeriodDate)

PeriodDate:

       42005

       42006

       42007

       42008

2|Ce

40|dsad

dasf.....

..

I need to exclude everything note date how can I do it ?

Hope that you can help.

Thanks in Advance

Mario

3 Replies
sunny_talwar

May be like this if everything else is text

LOAD PeriodDate

FROM ...

Where IsNum(PeriodDate);

Anonymous
Not applicable

where isnum(num#(PeriodDate));

when using non numerical field as input...

MarcoWedel

or just

Where PeriodDate;

as all numerical values not qual 0 evaluate as true.

regards

Marco