Conditional formatting based on multiple columns

dougbee

New Member
Joined
Sep 1, 2014
Messages
2
I need some help formatting items in column A depending if they are found in other columns. How do I do this?


2z66yqv.png
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
try this macro (change the colorindex number as you wish)

Code:
Sub test()
Dim r As Range, c As Range, animal As String, cfind As Range
Set r = Range(Range("A1"), Range("A1").End(xlDown))
r.Interior.ColorIndex = xlNone
For Each c In r
animal = c
If WorksheetFunction.CountIf(Columns("E:E").Cells, animal) > 0 Then c.Interior.ColorIndex = 6
If WorksheetFunction.CountIf(Columns("d:d").Cells, animal) > 0 Then c.Interior.ColorIndex = 3
Next c
MsgBox "macro done"
End Sub
 
Upvote 0

Forum statistics

Threads
1,225,478
Messages
6,185,228
Members
453,283
Latest member
Shortm88

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