Thread: Autofilter copy
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Mike Fogleman Mike Fogleman is offline
external usenet poster
 
Posts: 1,092
Default Autofilter copy

I have a fixed size table of data to autofilter. The data range is
Worksheets("DS Analysis").Range("A1:E25"). Row 1 is headers eg.,
DS Port, 2 Wk Max, %, 2 Wk Avg, %. I need to do 2 separate filter/copy/paste
of values and formats to 2 different destinations. The first filter criteria
is Field:=3, Criteria1:="=.85". The filtered results from columns A, B, & C
need pasted to G1 (includes headers). The 2nd filter criteria is to ShowAll
on field 3, then Field:=5, Criteria1:="=.75". The filtered results from
Columns A, D, & E need pasted to J1 (includes headers).
I would like to do this without .Selection if possible, and avoid copy/paste
of entire columns to keep the .UsedRange to a minimum.
Thanks for any code you could provide

Mike F