There is a post below that appears to deal with your issue (Link Inside)
32391.html
starts a thread that appears to be directly related to your problem
Not really what I'm looking for...
I am aware of how this would work on a single cell, but I want to look in an entire range (maybe array is a better word) I think the formula I want is more like a VLOOKUP, except that it would look at parts of the cell not the entire value
Check out IML's post below, looks like he has what you're after (NT)
Travis --
A formula cannot peek into formulae to see if they contain a specific char. What follows will check a range a values and return a logical as result.
=SUMPRODUCT(ISNUMBER(SEARCH("~?",A1:D10))+0)>0
Note that this looks for a question mark which needs to be escaped. I'm not using FIND expressly because of its inconsistent behavior regarding the chars with reserved meanings. For ordinary chars, you don't need the tilde for the formula to work.
SEARCH is case-insensitive. If you need case-sensitive searching, use FIND instead for chars for non-reserved meanings.
If you want to target also the formulae that cells might contain, you should ask VBA programmers for code.
Aladin
=========
Aladin, Eric, & IML- Thanks for the help...Works great
Aladin, Eric, & IML- Thanks for the help...Works great