Forum Discussion
Rodney2485
Nov 06, 2024Brass Contributor
Search product, return Found, Not found or leave blank if no data entered.
I have a file with different product numbers and i'm trying to create a search function that returns a Found, Not Found or Leaves cell blank if no data is entered into the search. Using IF(Vlookup I...
- Nov 06, 2024
maybe
=IF(A1="","",IFERROR(IF(VLOOKUP(...)<>"","Found"),"Not Found"))
m_tarler
Nov 06, 2024Bronze Contributor
maybe
=IF(A1="","",IFERROR(IF(VLOOKUP(...)<>"","Found"),"Not Found"))
- Rodney2485Nov 06, 2024Brass Contributor
This is it, thank you!