D
DR
How do I get an if statement to return true if a cell contains a text string
rather than its being entirely composed of the string? Thanks
rather than its being entirely composed of the string? Thanks
Frank Kabel said:Hi
one way
=IF(ISNUMBER(FIND("two",A1)),"something","something else")
DR said:Thanks. I'm just trying (Excel 2000) to get a true if the cell text says
"one two" where I say
IF (A1="*two*", something, something else)
It seems not to like that syntax and is giving me the false result