View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.misc
Don Guillett Don Guillett is offline
external usenet poster
 
Posts: 10,124
Default Conditional Formatting-Referencing adjacent cell

Right click sheet tabview codecopy/paste this. Should do what is desired.

Private Sub Worksheet_Change(ByVal Target As Range)
If UCase(Target) = "A" And Target.Interior.ColorIndex = 3 Then
Target.Offset(, 1).Interior.ColorIndex = 3
End If
End Sub
--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"cougarflank" wrote in message
...
I want to format my spreadsheet so that when a cell has an "a" in it and is
colored red, the cell immediately to its right will also be colored red.
Is
this possible through conditional formatting or VBA? Thanks.