[Excel 2007] Conditional Formating
I am trying to get my spread sheet to turn some different collors.
If Z2=A then turn the row red
If Z2=B then turn the row green.
I have tried a few things, but i can only get one or the other
ExcelExperts.comExcel Consultancy, VBA Consultancy, Training and Tips Call:+442081234832 |
|
Excel / VBA ConsultancyFree Training VideosFree SpreadsheetsExcel / VBA JobsNavigationWho's onlineThere are currently 0 users and 265 guests online.
New Excel Experts
Current Excel / VBA Jobs |
[Excel 2007] Conditional FormatingI am trying to get my spread sheet to turn some different collors. If Z2=A then turn the row red I have tried a few things, but i can only get one or the other |
Highest Ranked Users
Recent Blogs
ForumsRecent comments
User login |
VBA?
a = 1
b = 2
If Worksheets("sheet1").Cells(1, 1) = a Then
Worksheets("sheet1").Cells(1, 1).Interior.Color = RGB(200, 100, 100)
Else
If Worksheets("sheet1").Cells(1, 1) = b Then
Worksheets("sheet1").Cells(1, 1).Interior.Color = RGB(100, 200, 100)
End If
End If