Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have some code using Worksheet_Change so when the user changes a cell
value, it runs the CopyFilterData5 macro. I have another cell on the worksheet that's driven from a VLOOKUP table...when the value of the cell changes, I want to run the macro also. I tried putting the cell location in (i.e. E26,A2 but it won't trigger it. It appears that the Worksheet_Change only works if a cell is manually changed. Any ideas? Thanks Private Sub Worksheet_Change(ByVal Target As Range) If Not Intersect(Target, Range("E26")) Is Nothing Then Sheets("Entry").Select Application.Run "CopyFilterData5" End If End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Active Cell? = Iteration / Maximum Change Issue | Excel Discussion (Misc queries) | |||
Excel Worksheet Password Issue!!!!! | Excel Discussion (Misc queries) | |||
Help with Worksheet issue | Excel Worksheet Functions | |||
Referencing worksheet issue | Excel Discussion (Misc queries) | |||
worksheet collection issue | Excel Programming |