How Do I Find Double Quote in Excel

JeremyANG

New Member
Joined
Sep 5, 2013
Messages
2
Can someone please let me know if there is any escape characters in Excel. I'm trying to do something like this:

=FIND(""",A1)


Thankyou.
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Or one more quote:

=FIND("""", A1)
 
Upvote 0
Or one more quote:

=FIND("""", A1)
Let me see if I can clarify why that is the case for the OP. All text constants in a formula are identified by enclosing them in quote marks. For example...

="This is a quote"

Now let's say you wanted an actual quote mark between the words "This" and "is". If you wrote this...

="This " is a quote"

Excel would not know you meant that second one as an actual quote mark character and not as a closing quote mark for a text constant. To help Excel figure things out, the rule is to double up an actual quote mark character contained in a quoted text constant. So the proper way to add the quote mark character to the text is this way...

="This "" is a quote"

Now, lets remove the first word and its trailing space...

=""" is a quote"

See what happens when the quote mark character is the first character of the text... you end up with three quote marks... the first one is the required one indicating a text constant and the next two are to tell Excel that the text has an actual quote mark character there. Okay, now let's remove the rest of the text...

=""""

What is now left is four quote marks... the two outer ones are the ones that tell Excel what is between them is a text constant and the remaining two quote marks are the ones that tell Excel there is an actual quote mark character at that location.
 
Upvote 0

Forum statistics

Threads
1,223,243
Messages
6,170,964
Members
452,371
Latest member
Frana

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top