Searching in Excel
June 3, 2004 3:17 AM Subscribe
ExcelFilter: I want to determine if a given value is in a range of cells. A simple true/false evaluation would be sufficient, though returning a reference to the cell might be nice.
posted by namespan to computers & internet (4 answers total)
Therefore you can stick an IF around this and get:
=IF(COUNTIF([your range],[your value]) > 0, "yes in range", "no is not")
One example would be:
[your range] could be A1:A77
[your value] could be 13
in which case it would show you whether or not the value 13 appeared in the range A1:A77.
posted by ralawrence at 3:44 AM on June 3, 2004