Skip to main content
Announcements
NEW: Seamless Public Data Sharing with Qlik's New Anonymous Access Capability: TELL ME MORE!
cancel
Showing results for 
Search instead for 
Did you mean: 
ProfPhidd
Partner - Contributor
Partner - Contributor

Checking for Integer

Hi community, I am still new to Qlik.  How do i check to see if the first character is an integer.  e.g.  I have a product ID 1234BE3

Thanks.

AP

Labels (1)
1 Solution

Accepted Solutions
maheshkuttappa
Creator II
Creator II

Isnum(left('1234BE3',1)), results - Numeric value "-1"  and non-numeric value "0". 

View solution in original post

2 Replies
MatheusC
Specialist II
Specialist II

Hi, @ProfPhidd 

Leave a suggestion

There may be other better solutions, this is a path I found.

see if it helps

flag
if(Left(field,'1') >=0

and

Left(field,'1') <=9,
'int','not int')

Did you find a solution to your question? Mark the solution as accepted and if you found it useful, press the like button!
maheshkuttappa
Creator II
Creator II

Isnum(left('1234BE3',1)), results - Numeric value "-1"  and non-numeric value "0".