Conditional Formatting with Macros or VBA?

ken_spyce

New Member
Joined
Oct 29, 2002
Messages
2
Hi, I have a computer inventory sheet that I need to update as a justification for next year's purchases. This company I work in still uses a few Pentium I and Pentium II PCs. I want to use conditional formatting that would apply for the whole row and the criteria (Processor Used?) is in Column K. My data range is between A4 to BF156.
To be precise, if I say Pentium I or Pentium II in column K it should change the formatting of the whole row where the Pentium I PC belongs.
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Hi Ken,

You need a formula that returns a logical "TRUE" or "FALSE".
If cell K4 contains the text like "Pentium I", "Pentium II" ,"Celeron", "Pentium IV", etc., try something like this :

Select all the rows and the columns A:K
and use conditional formatting with this formula :
=OR($K4="Pentium I" ,$K4="Pentium II")

Regards,
 
Upvote 0
Hi Ken,
In that case I would use LEFT :

=LEFT($K4,7)="Pentium"

Hope this helps...
 
Upvote 0

Forum statistics

Threads
1,214,592
Messages
6,120,433
Members
448,961
Latest member
nzskater

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