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
516

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
499

Try:

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

Rob

hi experts..

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

points will be rewarded.

2 REPLIES 2
Read only

Former Member
0 Likes
500

Try:

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

Rob

Read only

0 Likes
499

thanks.i got it.