Excel uses double quote character to identify text, you need to a different approach. This article shows you How to use double quotes in Excel formulas in two ways: with and without a function.

Syntax

=""""

=CHAR(34)

How

There are 2 ways to use double quotes in Excel formulas:

  1. Without a function
  2. With a function

Without a function

This is the generic and most commonly used approach to add double quote characters in a formula. Type double quote twice, like double-double quotes (""). Although using double quotes twice is our preferred approach, when these double-double quotes come together with double quotes that specify a text, things can get mess.

="The "&B3&" is a """&C3&""" type Pokémon"

It may be really hard to count double quotes in smaller screens. Here is an alternative way to distinguish string separators from the double quotes used for text.

With a function

The function is called CHAR which returns the character of a specific number. It can get a number from 1 to 255 as it argument and returns the character from your computer's character set that matches the number. The character sets are different for Windows and Mac systems. While Windows machines uses ANSI code system, Mac machines uses Mac OS Roman.

Windows Character Set

MAC OS Character Set

Thankfully, the double quote character shares same numeric code for both systems, 34. So you can use CHAR function with code 34 to insert a double quote.

="The "&B4&" is a "&CHAR(34)&C4&CHAR(34)&" type Pokémon"