Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

numbers

Former Member
0 Likes
438

hi experts..

is there a way to know if a value is a number? ranges from 0-9.

points will be rewarded.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
421

Try:

IF f1 CO '1234567890'.
* Process number
ELSE.
* Something else.
ENDIF.

Rob

2 REPLIES 2
Read only

Former Member
0 Likes
422

Try:

IF f1 CO '1234567890'.
* Process number
ELSE.
* Something else.
ENDIF.

Rob

Read only

0 Likes
421

thanks.i got it.