简体   繁体   中英

Search for a number within cell range

I'm trying to figure out if there's a way I can search for a certain number in a range of cells? For example =SEARCH(M5,A:A) . That returns #VALUE! error. Anyone has experience on this?

You can use the COUNTIF function which will count a range for a specified value. You can then wrap the COUNTIF function in an IF statement to display a nicer message

=IF(COUNTIF(YOUR_RANGE, YOUR_CRITERIA) = 1, "Found", "Not Found")

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM