Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I do =RIGHT(DATA!$A$2:$A$1501,1) I get the value 3. When I do =$B$5 I get the value 3. When I do =RIGHT(DATA!$A$2:$A$1501,1)=$B$5 I get the value FALSE.

How the f%^k can 3 not equal 3. Is this a data type issue? Do I need a cast? If so how?

share|improve this question

2 Answers

up vote 1 down vote accepted

Yes, that's probably a data type issue. Try

=RIGHT(DATA!$A$2:$A$1501,1)=TEXT($B$5,"general")

via: The JLD Excel Blog - String to number, Number to String

share|improve this answer
argh! The hideous syntax! It hurts! – SpliFF Aug 7 '09 at 7:03
The goggles! They do nothing! ;-) I've seen much worse. I've seen IFs nested 30 levels deep (and attack ships on fire off the shoulder of Orion, too). – Tomalak Aug 7 '09 at 7:08

One of your "3"s is probably text. Try this:

=VALUE(RIGHT(DATA!$A$2:$A$1501,1))=VALUE($B$5)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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