search cell for certain value

  • Thread starter Thread starter cparsons
  • Start date Start date
C

cparsons

I got this to work but it is only looking at the first position.
still need something that will check the entire cell.

=IF(LEFT(A1,1)="%","Contractor","")

Thanks
 
Hi,
I'm not sure if this is the most efficient, but try:
=IF(ISERROR(FIND("%",A1)),"","Contractor")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top