View Single Post
  #7   Report Post  
Posted to microsoft.public.excel.programming
Les Stout[_2_] Les Stout[_2_] is offline
external usenet poster
 
Posts: 396
Default Color alternate Entire row dependant on value in "A"

Sweet, thanks a lot works great, just did a small modification.

If ActiveCell.Offset(-1, 0).Interior.ColorIndex = xlNone Then
ActiveCell.EntireRow.Interior.ColorIndex = 15
Else
ActiveCell.EntireRow.Interior.ColorIndex = xlNone
End If


Les Stout

*** Sent via Developersdex http://www.developersdex.com ***