vote up 2 vote down star

How can I construct the following string in an Excel formula:

Maurice "The Rocket" Richard

If I'm using single quotes, it's trivial = "Maurice 'The Rocket' Richard" but what about double quotes?

Thanks

flag

3 Answers

vote up 10 vote down check

Have you tried escaping with a double-quote?

= "Maurice ""The Rocket"" Richard"

link|flag
Works like a charm. – Allain Lalonde Oct 19 '08 at 16:52
Would that be a 'double double-quote'? :) – Jonathan Leffler Oct 19 '08 at 17:54
If you want a string that just consists of a double quote, you need """" which I make a double double double-quote. – Mike Woodhouse Oct 19 '08 at 19:46
vote up 3 vote down

Alternatively, you can use the CHAR function:

= "Maurice " & CHAR(34) & "Rocket" & CHAR(34) & " Richard"
link|flag
vote up 0 vote down

thank you, worked like a charm

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.