Home |
Search |
Today's Posts |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
This may get you started:
Option Explicit Sub testme01() Dim rngF As Range Dim wks As Worksheet Set wks = Worksheets("sheet1") With wks 'remove any existing filter first If .FilterMode Then .AutoFilterMode = False End If .Range("a:a").AutoFilter field:=1, Criteria1:="Chris3" Set rngF = .AutoFilter.Range If rngF.Cells.SpecialCells(xlCellTypeVisible).Cells.C ount = 1 Then 'no visible cells in filter (except header row) Else 'clear out existing data in column C? .Range("B:B").ClearContents With rngF .Resize(.Rows.Count - 1).Offset(1, 0) _ .Cells.SpecialCells(xlCellTypeVisible).Copy _ Destination:=.Range("B1") End With End If .AutoFilterMode = False End With End Sub "chrisdarl <" wrote: Thats not really what i am after, i am wanting to display the criteria values in a empty column i.e. B Thanks anyway, chris. --- Message posted from http://www.ExcelForum.com/ -- Dave Peterson |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
excel 2007 autofilter change to 2003 autofilter functionality? | Excel Discussion (Misc queries) | |||
2007 excel autofilter back to 2003 autofilter? | Excel Discussion (Misc queries) | |||
2007 excel autofilter change back to 2003 autofilter? | Excel Discussion (Misc queries) | |||
2007 Autofilter worse than 2003 Autofilter | Excel Discussion (Misc queries) | |||
How to Sort within AutoFilter with Protection on (and AutoFilter . | Excel Discussion (Misc queries) |