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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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

Labels (1)
3 Replies
sunny_talwar
MVP
MVP

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
MVP
MVP

or just

Where PeriodDate;

as all numerical values not qual 0 evaluate as true.

regards

Marco