Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hallo to everybody,
I am tryng to write few Vba lines to highlight a cell after update. I am using this code, but it doesn't work, either no error message. Can you please help me? Thanks Private Sub Worksheet_Change(ByVal Target As Range) Dim Rng1 As Range Dim Rng2 As Range Set Rng1 = Range("K7:K1500") ' Column("K:K") Set Rng2 = Intersect(Rng1, Target) If Target.Count 1 Then Exit Sub If Target.Column < Rng2 Then Exit Sub Columns(Rng2).Interior.ColorIndex = xlNone Target.Interior.ColorIndex = 6 End Sub Regards Mark |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Using Excel VB, Update a specific cell, on any change of anotherspecific cell | Excel Discussion (Misc queries) | |||
Highlight a cell with a specific word in it | Excel Worksheet Functions | |||
Highlight automatically a specific cell | Excel Worksheet Functions | |||
Help - Update a SQL table from a specific range in Excel | Excel Programming | |||
Highlight a row if a specific cell is specific numbers/words | Excel Worksheet Functions |