Conditional format excel 2003

JeffD

New Member
Joined
Feb 5, 2009
Messages
35
Hi, I need help writing a conditional format which says this:

If any cell in column L begins with CSZG then make cells blue. So if cell L17 says CSZG-AB6 then make cells J17, K17, L17, M17, N17 and O17 blue.

Any help is appreciated.

Thanks.
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Select cell J17.
Format, Conditional Formating, Formula Is.
Code:
=LEFT($L17,4)="CSZG"
and apply a blue format.

Copy the format to all the other cells that this applies to, for example J1:O100.
 
Upvote 0
I just discovered a problem. Since 2003 only allows 3 conditional formats, I'm not sure how to work this. I have 5 possibilities that could arise. The one I mentioned CSZG as well as CTS8, CTS9, CTR7, BSZN. Each one needs a different colour. Can this be done?
 
Upvote 0
If they each need a different colour, then you'll need a VBA solution. Try searching this board for VBA and Conditional Formating.
 
Upvote 0

Forum statistics

Threads
1,224,574
Messages
6,179,634
Members
452,934
Latest member
Jdsonne31

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