Hey guys, trying to overcome excel 2003's limitation of only 3 conditional format rules being applied to my specified range of cells. Hoping someone may be able to help.
My problem lies in that my rules involve vlookup's.
My range is J21:J218 whereby I'd like to apply the following worksheet change rules "COND FORMATTING".
=vlookup(J21,jas_lookup,2,0) lookup value is 733
=vlookup(J21,jas_lookup,3,0) lookup value is 734
=vlookup(J21,jas_lookup,4,0) lookup value is 738
=vlookup(J21,jas_lookup,6,0) lookup value is 767
=vlookup(J21,jas_lookup,7,0) lookup value is 767ZX
=vlookup(J21,jas_lookup,8,0) lookup value is A330
=vlookup(J21,jas_lookup,9,0) lookup value is A380
=vlookup(J21,jas_lookup,10,0) lookup value is 747
=vlookup(J21,jas_lookup,11,0) lookup value is 747RR
=vlookup(J21,jas_lookup,12,0) lookup value is 738JX
Unsure how to define "conditions" in vba project module. Got as far as below but got stuck with compile errors regarding "case" definitions.
Want my colours to change to green for all conditions on "sheet change"
Private Sub Worksheet_Change(ByVal Target As Range)
Set I = Intersect(Target, Range("J21:J218"))
If Not I Is Nothing Then
Select Case Target
End Sub
Hope someone more knowledgable can advise me please !!!
J
Bookmarks