Home |
Search |
Today's Posts |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
JLGWhiz wrote:
Not sure which event would work in your case, but the Worksheet_Change does not appear to be the correct one. Maybe Worksheet_Activate? Or tag this macro onto the tail end of your download code. Can anyone point me in the right direction with this Macro. [quoted text clipped - 34 lines] Application.EnableEvents = True End Sub I decided to try a different method:- ' Refresh ODBC Range("D8").Select Selection.QueryTable.Refresh BackgroundQuery:=False Range("D8").Select For I = 1 To 100 With ActiveSheet.Cells(I, 4) 'COL 4 = COL D If .Value = "123" Then .Interior.ColorIndex = 3 ElseIf .Value = "456" Then .Interior.ColorIndex = 4 ElseIf .Value = "789" Then .Interior.ColorIndex = 5 ElseIf .Value = "abc" Then .Interior.ColorIndex = 6 'etc End If End With Next I don't suggest it's smart, only that it works. Thanks for your reply, and to others on my wrongly posted thread -- Message posted via OfficeKB.com http://www.officekb.com/Uwe/Forums.a...mming/200805/1 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How can I convert conditional formatting into explicit formatting? | Excel Discussion (Misc queries) | |||
Formatting cells in a column with conditional formatting? | Excel Discussion (Misc queries) | |||
Protect Cell Formatting including Conditional Formatting | Excel Discussion (Misc queries) | |||
conditional Formatting based on cell formatting | Excel Worksheet Functions | |||
Conditional Formatting that will display conditional data | Excel Worksheet Functions |