Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
BTW ....if this matters at all, the sheet is protected and I am using Excel
2000 "Bob Phillips" wrote in message ... Private Sub Worksheet_Change(ByVal Target As Range) Const WS_RANGE As String = "D12:J81" On Error GoTo ws_exit: Application.EnableEvents = False If Not Intersect(Target, Me.Range(WS_RANGE)) Is Nothing Then With Target If .Value = Me.Range("K7").Value Then .Interior.ColorIndex = 3 Else .Interior.ColorIndex = xlColorIndexNone End If End With End If ws_exit: Application.EnableEvents = True End Sub 'This is worksheet event code, which means that it needs to be 'placed in the appropriate worksheet code module, not a standard 'code module. To do this, right-click on the sheet tab, select 'the View Code option from the menu, and paste the code in. -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "ADK" wrote in message ... I have used a 3 conditional formats for other things. With vba, I would like to have a cell fill be red and the font black if the cell equals a date in cell K7. The range of cells for this possible format is D12:J81 I found some code on the net and tried to modify it to get it to do what I want ...I made into a disaster. Private Sub Worksheet_SelectionChange(ByVal Target As Range) With Range("D12:J81") If Application.Cells = Today() Then .Interior.ColorIndex = 3 Else .Interior.ColorIndex = 0 End If End With End Sub Thanks for any help ADK |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Populate Cell with another cell, but only if the date equals today | Excel Worksheet Functions | |||
how do I do this: today minus hire date equals how many years mo. | Excel Worksheet Functions | |||
If a cell equals _, at the next row that equals _, return value fr | Excel Worksheet Functions | |||
IF TODAY equals date in cell A10, or if TODAY is beyond that date | Excel Worksheet Functions | |||
If cell is left blank, or equals zero, then cell equals a different cell | Excel Discussion (Misc queries) |