hi thanks for the welcome, Im totally new to Excel so I was not aware
of conditional formating but im reading up on it, And I'm looking forward to learn everything I can here.
As far as my problem im still stuck, Its highlighting but it seems
its not highlighting based on what im telling it.
here what I have now this is just the first parameter, again its highlighting
but not correctly
Code:
Sub highlight()
For Each cell In Range("B2:B200")
If cell.Value >= 1000 And cell.Value <= 10000 Then
cell.Offset(2, -1).Interior.ColorIndex = 6
End If
Next cell
End Sub
heres the sample file im testing on
highlightsample.zip
heres what I'm trying to accomplish.
I want cells with text in A2:A200 to highlight based on values in col B and Col C
if col B is 1000-10,000 highlight yellow
if col B is 10,000 or more highlight green
if col B is 5000 or more and Col C is less than 20000 highlight red.
all this is activated by a command button
this is a keyword volume and competition analyzer just so you know
what Im doing.
Hope you can help thanks