Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() I have entered this VBA to change a row color if a certain condition i met. However if is condition then changes to something other then th specified condion I would like the row format to change back to th original. How can I get this done? Here is what I have to change th row color: Private Sub Workbook_Open() Dim cell As Range, rng As Range Dim Sh As Worksheet For Each Sh In ThisWorkbook.Worksheets For Each cell In Sh.Range("AL6:AL2000") If cell.Value = "Weekly Subtotal" Then Set rng = Intersect(Sh.Range("A8:J2000"), _ cell.EntireRow) rng.Interior.ColorIndex = 45 End If Next Next End Sub How can I get back to the original format. including the defaul border -- parteegolfe ----------------------------------------------------------------------- parteegolfer's Profile: http://www.excelforum.com/member.php...fo&userid=3195 View this thread: http://www.excelforum.com/showthread.php?threadid=51734 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Going back to original location | Excel Discussion (Misc queries) | |||
Revert back to original sort | Excel Discussion (Misc queries) | |||
Pivot Tables - Can I get back to my original Data | Excel Discussion (Misc queries) | |||
Back to original file | Excel Programming | |||
using VBA to go back to the original value before the cell was changed | Excel Programming |