Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I'm having problems with the code below, and wondered if anybody had any ideas. Basically, the code is supposed to tell an autofilter which value to filter on. This is supposed to be prompted when a certain cell (H3) has the value entered into it. And the code is supposed to run automatically when the spreadsheet is opened. I'm happy with the autofilter part of the code, and (when I take out the part that is supposed to update the autofilter when a new value is entered in H3), I'm also happy with the part which makes the code run when the spreadsheet is opened. My question therefore is: what is wrong about the worksheet_change part of the function? (And am I calling it correctly from workbook_open?) I should point out that I'm a bit of a newbie, so please assume I don't know anything if you answer! Private Sub workbook_open() Call worksheet_change End Sub Public Sub worksheet_change(ByVal target As Range) End Sub If Intersect(target, Range("h3")) Is Nothing Then Exit Sub Else Sub filterthing() With Sheet1 .AutoFilterMode = False .Range("A10:M5000").AutoFilter .Range("A10:M5000").AutoFilter Field:=5, Criteria1:=Range("h3").Text End With End Sub Many thanks |
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 | |||
Change in one Worksheet Activates Another Worksheet Change | Excel Programming | |||
Cell value change to trigger macro (worksheet change event?) | Excel Programming | |||
Change Cell from Validated List Not Firing Worksheet Change Event | Excel Programming |