Thread
:
Comparing String Values
View Single Post
#
1
Posted to microsoft.public.excel.programming
Roderick[_4_]
external usenet poster
Posts: 1
Comparing String Values
Hello!
Try:
If NOT(Value_of_Cell = Title) Then Broken = True
You can't negate a string variable
afaik
.
What should also work is:
Broken = NOT(Value_of_Cell = Title)
Ro
--
Message posted from
http://www.ExcelForum.com
Reply With Quote
Roderick[_4_]
View Public Profile
Find all posts by Roderick[_4_]