Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Check whether the value is number or not

Hi everyone,

I load some large Excel documents with numeric value and then show them in table chart.

I would like to make control on load to check if somebody enter letter in Excel document.

It would be the best If I could show that field in some table to know what I should rewrite.

Any help is welcome.

Tnx

1 Solution

Accepted Solutions
alexandros17
Partner - Champion III
Partner - Champion III

There are some functions thata test if a value is Numerical or is Null

Isnum(Value)

IsNull(Value)

when you load your data you can set flags something like

Load

...

if(isnum(myField), myField, 'X') as myFieldFlag

...

in this way all values having 'X' will contains wrong values

View solution in original post

3 Replies
alexandros17
Partner - Champion III
Partner - Champion III

There are some functions thata test if a value is Numerical or is Null

Isnum(Value)

IsNull(Value)

when you load your data you can set flags something like

Load

...

if(isnum(myField), myField, 'X') as myFieldFlag

...

in this way all values having 'X' will contains wrong values

Not applicable
Author

Tnx for reply,

I will check now

SlimJim
Contributor II
Contributor II

Simple IsNum may not always work. Try this also:

isnum( Num# (Field) )