Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Ok I'm in need of some help:
On my worksheet i have a cell with a validation drop box. The following code filters the page when the user selects a value from the drop box. Problem is I want it also to clear cell contents in cell c4. I know how to write it to clear the contents but once you type something in c4 then the filter runs again thus clearing the contents again. I understand this means the macro runs anytime something is changed in the workshet. How do I write it to work only when the drop down box is used. That way the user can change things on the worksheet without it running the macro. The following is my code thus far: Option Explicit Private Sub Worksheet_Change(ByVal Target As Range) If Target.Row = 3 And Target.Column = 3 Then 'calculate criteria cell in case calculation mode is manual Worksheets("ProduceData").Range("Q2").Calculate Worksheets("ProduceData").Range("Database") _ .AdvancedFilter Action:=xlFilterCopy, _ CriteriaRange:=Sheets("ProduceData").Range("q1:q2" ), _ CopyToRange:=Range("a7:f7"), Unique:=False End If End Sub -- Though daily learning, I LOVE EXCEL! Jennifer |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how to change the pivot chart automaticaly as values in the worksheet change | Excel Worksheet Functions | |||
change formula in a shared worksheet without losing change history | Excel Worksheet Functions | |||
Help Please, Worksheet Change | Excel Worksheet Functions | |||
Worksheet Change | Excel Programming | |||
Change Cell from Validated List Not Firing Worksheet Change Event | Excel Programming |