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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
QlikAngel
Partner - Creator
Partner - Creator

Number Data

Hi,

I have field in that i have numbers & Text Data..

I want only number data in application.

how to do it

Regards,

Mayuri

1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

Load * From YourFileName

Where IsNum(YourFieldName);

View solution in original post

4 Replies
alexandros17
Partner - Champion III
Partner - Champion III

Give us more details please ...

Generally you can use string functions to take only a part of a string but I need to know the structure of your data

MK_QSL
MVP
MVP

Load * From YourFileName

Where IsNum(YourFieldName);

datanibbler
Champion
Champion

Hi Mayuri,

try the ISNUM() formula - that returns -1 when it is true (if the field_content is numeric), 0 otherwise.

HtH

Anonymous
Not applicable

Use the IsNum() function to filer out numbers only.