Conditional Formatting and Quotation Marks...(Aptos Narrow)

Match12

New Member
Joined
Apr 1, 2019
Messages
20
Office Version
  1. 2016
  2. 2010
With the switch to Aptos Narrow as the default font in Excel I have found I am having issues with conditional formatting in formulas that use Quotation Marks [e.g. =IF(AND(G10<>“OK”, AND(G10<>“NG”,G10<>“N/G”)),TRUE,FALSE)]
The quotation marks that are "curved" do not work in the formulas. vs. " The former does not work, that latter does.
I can't for the life of me understand why one quotation mark works while the other does not.
My fix was the change the default font back to Arial...but I wonder if others that use this spreadsheets will have the same issue.
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Hello,
It is very strange you have this issue in Excel. In Word i indeed had to go to
File > options > Proofing > AutoCorrect > AutoFormat as you type
And uncheck the [replace straight quotes with smart quotes], but this option does not exist in Excel.
 
Upvote 0
On a side note, you don't need an IF function with TRUE/FALSE result options and you shouldn't need two AND functions. This logic should produce the same results as shown below.
Excel Formula:
=AND(G10<>"OK",G10<>"NG",G10<>"N/G")

24 11 24.xlsm
GHI
9Your formula (with straight quotes)New formula
10abcTRUETRUE
11OKFALSEFALSE
12TomTRUETRUE
13NGFALSEFALSE
14Other TRUETRUE
15TRUETRUE
16N/GFALSEFALSE
Sample
Cell Formulas
RangeFormula
H10:H16H10=IF(AND(G10<>"OK", AND(G10<>"NG",G10<>"N/G")),TRUE,FALSE)
I10:I16I10=AND(G10<>"OK",G10<>"NG",G10<>"N/G")
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,993
Messages
6,175,845
Members
452,675
Latest member
duongtruc1610

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