Excel Conditional Formatting Escaping a Question Mark

26,831

Solution 1

Prefix it with tilde

~?

The tilde (~) is an escape character for special and wildcard characters in Excel. You can use escape characters to provide literal representations of characters that otherwise have a special meaning. You can also use tilde (~) followed by ?, *, or ~ to find question marks, asterisks, or other tilde characters — for example, fy91~? finds "fy91?"

Solution 2

Change the rule to "cells ending with" "?". This will color all cells with a question mark assuming it is the last character.

Solution 3

Also you can use Specific Text > Contains > ~? This tells excel to ignore symbol command and treats the cell as text.

Share:
26,831
Matt Roberts
Author by

Matt Roberts

I like JavaScript array comprehensions.

Updated on September 17, 2022

Comments

  • Matt Roberts
    Matt Roberts over 1 year

    I would like to use a conditional formatting rule in an excel file that would color any box with a question mark in it red. It seems that Excel is using a question mark as a wild card and will turn all cells with at least one character in them red. How can i escape the question mark?

    These don't seem to work:

    • "?"
    • \?
    • '?'
    • ??
  • Balmipour
    Balmipour almost 7 years
    Prefix with a ~ ? Seriously ? What the rofl... Does anyone have an idea why ? Anyway, huge thanks. I'd never have figured out such a syntax alone.