Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am trying to write some code where I start the cursor in a workbook,
and it loops down until the cell in that column is empty changing the colours of the cells on the way depending what is in the cell. Here is my attempted effort. Any help would be great, Thanks Do If IsEmpty(ActiveCell) = False Then ElseIf ActiveCell = "zone total" Then ActiveCell.Select With Selection.Interior ColorIndex = 12 Pattern = xlSolid ActiveCell.Offset(1, 0).Select ElseIf ActiveCell = "regional total" Then ActiveCell.Select With Selection.Interior ColorIndex = 45 Pattern = xlSolid ActiveCell.Offset(1, 0).Select Else ActiveCell.Select With Selection.Interior ColorIndex = 3 Pattern = xlSolid ActiveCell.Offset(1, 0).Select End If Loop Until IsEmpty(ActiveCell) = True End Sub:) --- Message posted from http://www.ExcelForum.com/ |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Colon at the end of excel file name(ex: problem.xls:1, problem.xls | New Users to Excel | |||
Problem viewing Excel 2003 Pivot Chart fields in Excel 2007 | Charts and Charting in Excel | |||
Weird problem with Excel 2000...Worksheets disappearing in a shared Excel file | Excel Discussion (Misc queries) | |||
Started out as an Access problem. Now an Excel problem | Excel Discussion (Misc queries) | |||
Excel 97 chart opened in Excel 2003 - Source Data problem | Charts and Charting in Excel |