Conditional Highlighting for two characters or more

Double99

New Member
Joined
Jul 11, 2011
Messages
29
I hope somebody can help me with two conditional format questions...

1. Can anybody please tell me what formula I need to type in to highlight all cells with two or more characters typed within them.

2. I also need a Conditional format formula that will highlight any cell with anything other than a number typed within it.

Many Thanks

Cris
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
I hope somebody can help me with two conditional format questions...

1. Can anybody please tell me what formula I need to type in to highlight all cells with two or more characters typed within them.

2. I also need a Conditional format formula that will highlight any cell with anything other than a number typed within it.

Many Thanks

Cris
Try these...

1: =LEN(A2)>=2

2: =AND(A2<>"",COUNT(FIND(ROW(INDIRECT("1:10"))-1,A2))=0)
 
Upvote 0
Try these...

1: =LEN(A2)>=2

2: =AND(A2<>"",COUNT(FIND(ROW(INDIRECT("1:10"))-1,A2))=0)
Note...

If you test formula 2 on the worksheet it has to be array entered.

I interpreted this:

any cell with anything other than a number typed within it.
To mean that a cell could contain a number like 10 or an alpha-numeric like AC 110.
 
Upvote 0

Forum statistics

Threads
1,224,521
Messages
6,179,286
Members
452,902
Latest member
Knuddeluff

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