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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to peek only numbers from field

Hello ,

     I want to peek only numbers from varchar column.

so pls help me in this .

Thank u.

3 Replies
sushil353
Master II
Master II

Please post some sample data

kumarnatarajan
Partner - Specialist
Partner - Specialist

Hi,

use Keepchar() function. try below mentioned syntex.

Ex: Keepchar('12ab98q', '0123456789') 

Not applicable
Author

try this

LOAD num(test) as number, * INLINE [

    test

    1

    2

    a

    b

    6

    f

];