Conditional formatting

lauren18

New Member
Joined
Sep 14, 2015
Messages
12
Hi all,

I'm looking to create a formula for conditional formatting that works as thus;

- If D4 to D401 contain the specific text "Bronze" then the row (A through to Z) it is in will be colour1
- If D4 to D401 contain the specific text "Silver" then the row (A through to Z) it is in will be colour2
- If D4 to D401 contain the specific text "Gold" then the row (A through to Z) it is in will be colour3
- If D4 to D401 contain the specific text "Platinum" then the row (A through to Z) it is in will be colour4

These words appear in other columns however I only want to look for the word to appear in column D and then the colour will be applied to the whole row.

i.e. if D4 has the word gold then cells A4 to Z4 will be colour3
if D5 has the word silver then cells A5 to Z5 will be colour2
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
No need for VBA, if you are familiar with conditional formatting already this should be easy. You will make a conditional format based on a formula. In your case, =ISNUMBER(SEARCH("Bronze",$D4)). Apply this to the entire range, A4:Z401. You may need to apply it then reopen the formula and correct the reference.
 
Upvote 0
Hi,

If I remember correctly, if you have Excel NEWER than 2007, you can use the following FOUR (4) conditional formatting rules, highlight A4:Z401, format using formulas:

Code:
=$D4="Bronze"
format color1

Code:
=$D4="Silver"
format color2

Code:
=$D4="Gold"
format color3

Code:
=$D4="Platinum"
format color4

If you have Excel 2007 or older, you'll need VBA solution.
 
Last edited:
Upvote 0
Note that the difference between my method and jtakw's is that if your cell must equal, not contain, "Bronze", "Silver", etc for jtakw's to work.
 
Upvote 0
Hi,

If D4 has other text or values in addition to "Bronze", "Silver", etc...., select A4:Z401, use:

Code:
=SEARCH("Bronze",$D4)
=SEARCH("Silver",$D4)
=SEARCH("Gold",$D4)
=SEARCH("Platinum",$D4)

Format colors needed.
 
Upvote 0

Forum statistics

Threads
1,214,942
Messages
6,122,366
Members
449,080
Latest member
Armadillos

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