Is there a function that tests for a string (non numeric) values and returns a boolean value in Open Office Basic?

I tried IsNumeric on a string and it returns a boolean False. But when I negate it with Not(IsNumeric(value)), it converts the return value to a long or an int.

link|improve this question

75% accept rate
feedback

1 Answer

up vote 3 down vote accepted

For Open Office Basic, you can use ISNUMBER()

ISNUMBER(123)

returns TRUE.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.