=NOT(ISNUMBER(RIGH(V670,5)))

D

Dave F

This formula resolves to TRUE: =NOT(ISNUMBER(RIGH(V670,5)))

V670 is a string of numbers formatted as text.

As far as I can tell, ISNUMBER(RIGHT(V670,5)) resolves to FALSE
because the extracted string of characters is formatted as text.

Therefore the NOT portion forces the formula to resolve to TRUE
because it is TRUE that the string is NOT a number?

Does that sound accurate?
 
D

Dave F

This formula resolves to TRUE: =NOT(ISNUMBER(RIGH(V670,5)))

V670 is a string of numbers formatted as text.

As far as I can tell, ISNUMBER(RIGHT(V670,5)) resolves to FALSE
because the extracted string of characters is formatted as text.

Therefore the NOT portion forces the formula to resolve to TRUE
because it is TRUE that the string is NOT a number?

Does that sound accurate?

Should be RIGHT not RIGH in the formula.
 
P

Peo Sjoblom

TRUE, but why are you using it? Why not skip the NOT and use ISTEXT instead?


--


Regards,


Peo Sjoblom
 
J

JE McGimpsey

You're correct.

You could also use

=ISNUMBER(-RIGHT(V670,5))

(assuming V670 isn't blank)

If you want the opposite behavior, one way:

=NOT(ISNUMBER(-RIGHT(V670,5)))
 
D

Dave F

Well, fair point, but the formula is in a spreadsheet given to me by
someone else. So I didn't create it.

Dave
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Extracting 7 digit number from alphanumeric string 10
ISNUMBER QUESTION 8
#Value Error? 2
ISNUMBER Function 2
#VALUE! 3
Validating data 8
ISNUMBER 7
The dreaded "E" 4

Top