Conditional format one cell if range contains any text

coralasiy

New Member
Joined
Nov 12, 2015
Messages
24
Hi all,

I thought this would be a relatively easy conditional format to apply however i'm really struggling to find a solution.

In brief I would like to apply a conditional format to highlight cell A1, if any of the cells in range, say A2:A100, contain any text. (A2:A100 should only contain dates).

I've tired to apply formatting using variations on formulas containing the istext() function and searched this forum/the internet for a solution but cannot find anything that works to flag one cell if any of the cells in a range contain any text.

Im sure the solution is simple but would appreciate if anyone could give me a hand making this work?

Thank you in advance!
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
try this CF formula

=COUNT(A2:A100)<99

or if there are blanks within

=COUNT(A2:A100)+COUNTBLANK(A2:A100)<99
 
Last edited:
Upvote 0
That will only work if all cells have number. Maybe this:

=COUNTIF(A2:A100,"*")
 
Upvote 0

Forum statistics

Threads
1,224,823
Messages
6,181,181
Members
453,022
Latest member
Mohamed Magdi Tawfiq Emam

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