Forum Discussion
ichow88
Nov 22, 2023Copper Contributor
Conditional Formatting exception formula
Hi, I have a data set where I would like to highlight the cell if the cell value is "N". However in the same data set, I also have cell values of "N/A". None of the existing preset rule seems to...
- Jul 05, 2024
To highlight any non-blank cell except one with question mark you may use
=(A2<>"")*(A2<>"?")Dates in Excel are actually numbers. Except texts which looks dates, but formatting won't convert them into the dates.
SergeiBaklan
Jul 05, 2024Diamond Contributor
To highlight any non-blank cell except one with question mark you may use
=(A2<>"")*(A2<>"?")
Dates in Excel are actually numbers. Except texts which looks dates, but formatting won't convert them into the dates.
chwar750
Jul 05, 2024Copper Contributor
Brilliant, thank you
- SergeiBaklanJul 05, 2024Diamond Contributor
chwar750 , you are welcome