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

  • Thread starter Thread starter Dave F
  • Start date Start date
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?
 
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.
 
TRUE, but why are you using it? Why not skip the NOT and use ISTEXT instead?


--


Regards,


Peo Sjoblom
 
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)))
 
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


Back
Top