Excel formula help

S

Simon S

Hi, I am trying to search for inverted commas in a text string using the
search formula, I tried to put the inverted comma within inverted commas but
that did not work i.e. =SEARCH(""",B2,1) ....thanks
 
T

T. Valko

Do you mean you're looking for double quotes " ?

A1 = look "for" this

=FIND("""",A2)

That's 4 double quotes " " " "
 
S

Shane Devenshire

I'm not saying that Jacob's solution doesn't work, but so does Valko's

=FIND("""",A1)
or
=FIND(CHAR(34),A1)

both work and are shorter then SEARCH.

As was stated this is four double-quotes in a row!
 
T

T. Valko

I'm pretty sure my suggestion works. If it didn't work for you you'd have
give me more detail as to what *exactly* you're trying to do.
 

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

Top