Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi All,
I have found the following code to AutoFilter based on the value of a certain cell:- Criteria1:=Worksheets(1).Range("E9").Value (Thks to Tom Olgivie!!) Can anybody provide the correct syntax required to change this code to be the equivalent of a "greater than" filter instead of the "equal to" that it is currently? -- Tracey @ BrisVegas |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try this:
Criteria1:="=" & Worksheets(1).Range("E9").Value Does that work for you? -- "Actually, I *am* a rocket scientist." -- JB (www.MadRocketScientist.com) Your feedback is appreciated, click YES if this post helped you. "Tracey" wrote: Hi All, I have found the following code to AutoFilter based on the value of a certain cell:- Criteria1:=Worksheets(1).Range("E9").Value (Thks to Tom Olgivie!!) Can anybody provide the correct syntax required to change this code to be the equivalent of a "greater than" filter instead of the "equal to" that it is currently? -- Tracey @ BrisVegas |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Criteria1:="" & Worksheets(1).Range("E9").Value
"Tracey" wrote: Hi All, I have found the following code to AutoFilter based on the value of a certain cell:- Criteria1:=Worksheets(1).Range("E9").Value (Thks to Tom Olgivie!!) Can anybody provide the correct syntax required to change this code to be the equivalent of a "greater than" filter instead of the "equal to" that it is currently? -- Tracey @ BrisVegas |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Now works a treat -- thanks to both of you !!
-- Tracey @ BrisVegas |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Adding data only if adjacent to cell labeled "male"/"female" | Excel Worksheet Functions | |||
correct syntax for nesting "if", "and", and "vlookup"....if possib | Excel Worksheet Functions | |||
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell | Excel Discussion (Misc queries) | |||
Macro to concatenate into "B1" B2 thru B"x" based on new data in "Col A" | Excel Discussion (Misc queries) | |||
Excel VBA - go to worksheet "name" based on a cell reference ="Name" | Excel Programming |