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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to filter rows where value is not a number?

Hi all,

I have the following table

aaaa

34

22.2

drr

and I would like to filter number rows so I obtain

24

22.2

Any hint?

3 Replies
jagan
Partner - Champion III
Partner - Champion III

Hi,

Try like this

LOAD

*

FROM Data

Where IsNum(Value);

Hope this helps you.

Regards,

Jagan.

Not applicable
Author

Hi,

Hope this will help you.

rustyfishbones
Master II
Master II

You WHERE ISNUM(Value);

like below

2014-03-05_0936.png