Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default AutoFilter VBA help.

Hi i have a sheet it has the heading "Name" in column a. i want to mak
a macro that applies a autofilter to the whole of columm a. then retur
the values in the autofilter in column c.

Can anyone please help. I've been trying to do this for ages but canno
manage it.

Thanks Chris

--
Message posted from http://www.ExcelForum.com

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,885
Default AutoFilter VBA help.

Hi
see
http://www.contextures.com/xlautofilter03.html
for applying an autofilter and copying the filtered rows.

--
Regards
Frank Kabel
Frankfurt, Germany


Hi i have a sheet it has the heading "Name" in column a. i want to
make a macro that applies a autofilter to the whole of columm a. then
return the values in the autofilter in column c.

Can anyone please help. I've been trying to do this for ages but
cannot manage it.

Thanks Chris.


---
Message posted from http://www.ExcelForum.com/


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default AutoFilter VBA help.

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/

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,824
Default AutoFilter VBA help.

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

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
excel 2007 autofilter change to 2003 autofilter functionality? jonnybrovo815 Excel Discussion (Misc queries) 1 April 19th 10 10:05 PM
2007 excel autofilter back to 2003 autofilter? jonnybrovo815 Excel Discussion (Misc queries) 3 April 19th 10 08:11 PM
2007 excel autofilter change back to 2003 autofilter? jonnybrovo815 Excel Discussion (Misc queries) 1 April 19th 10 05:53 PM
2007 Autofilter worse than 2003 Autofilter jsky Excel Discussion (Misc queries) 9 October 31st 07 12:14 AM
How to Sort within AutoFilter with Protection on (and AutoFilter . giblon Excel Discussion (Misc queries) 1 February 16th 06 12:23 PM


All times are GMT +1. The time now is 05:56 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"