Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
i have a worksheet that shows worktimes for employees, the cells ar
grey, when you enter the employees time or "shift" and press a butto that executes my macro, it changes the colour of the "shift" to whit to show the time scale that the employee is working. the macro run fine, the problem is that to run the macro i have to click a button. i there a way of running the macro, or executing the code when i ente the employees "shift" of time. or is this not possible? this is the code i am using at the minute for it to run when i click o a button: Private Function ShadeCells() Dim rng As Range, cell As Range Range("D8:AJ106").Interior.ColorIndex = 15 Set rng = Range("B8:AJ106") For Each cell In rng Cells.ShrinkToFit = True Select Case cell.text Case "6~10" Range("D" & cell.row).Resize(1, 8).Interior.ColorIndex = 0 Case "6~11" Range("D" & cell.row).Resize(1, 10).Interior.ColorIndex = 0 Case "6~12" Range("D" & cell.row).Resize(1, 12).Interior.ColorIndex = 0 Case "6~3" Range("D" & cell.row).Resize(1, 18).Interior.ColorIndex = 0 Case "7~4" Range("F" & cell.row).Resize(1, 18).Interior.ColorIndex = 0 Case "E" Range("I" & cell.row).Resize(1, 18).Interior.ColorIndex = 0 Case "8~5" Range("H" & cell.row).Resize(1, 18).Interior.ColorIndex = 0 Case "8.30~5.30" Range("I" & cell.row).Resize(1, 18).Interior.ColorIndex = 0 Case "9~6" Range("J" & cell.row).Resize(1, 18).Interior.ColorIndex = 0 End Select Next cell End Function thanks in advance for anything -- Message posted from http://www.ExcelForum.com |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Change a specific code to generic in VB macro | Excel Discussion (Misc queries) | |||
change the Date in cell B2 if changes are made | Excel Worksheet Functions | |||
Color a cell When Change Is Made | Excel Discussion (Misc queries) | |||
Using an Excel VB-made form in cell-specific conditions. | Excel Worksheet Functions | |||
how do I take the changes I made on one page and change all pages | Excel Discussion (Misc queries) |