Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() The followin is what I am working on. What I don't like is that it removes the grid lines. What do I change so that when the cells are blank formated the gridlines still show? Private Sub Worksheet_Calculate() Application.ScreenUpdating = False For y = 4 To 38 Cells(y, 10).Select A_Done = Cells(y, 10) If A_Done = "x" Then ' Range(ActiveCell, ActiveCell.End(xlToLeft)).Select ActiveCell.Select With Selection .Interior.ColorIndex = 4 ' .Interior.Pattern = xlSolid .Font.ColorIndex = 4 End With ElseIf A_Done = "o" Then ' Range(ActiveCell, ActiveCell.End(xlToLeft)).Select ActiveCell.Select With Selection .Interior.ColorIndex = 2 ' .Interior.Pattern = xlSolid .Font.ColorIndex = 2 End With End If Next y Application.ScreenUpdating = True End Su ----------------------------------------------- ~~ Message posted from http://www.ExcelTip.com ~~View and post usenet messages directly from http://www.ExcelForum.com |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel grid lines show when pasting, didn't used to | Excel Discussion (Misc queries) | |||
Transferred file from QuatroPro. How do I get grid lines to show | Excel Discussion (Misc queries) | |||
Cell grid lines won't show up, and have box checked | Excel Discussion (Misc queries) | |||
Show grid lines when printing? | New Users to Excel | |||
Why do some grid lines not show in print preview? | Excel Discussion (Misc queries) |