PC Review


Reply
Thread Tools Rate Thread

Copy Filtered Data

 
 
sailor4life61@yahoo.com
Guest
Posts: n/a
 
      25th Mar 2010
I am filtering my data that is in the range A:AJ starting on row 13
with headers and having a variable ending row. My filter criteria is
Column 1 not blank and Column 11 ="s". I would like to copy the
filtered date (No headers) to another work book beginning in BE3.
Thanks!
 
Reply With Quote
 
 
 
 
Eduardo
Guest
Posts: n/a
 
      25th Mar 2010
Hi,
Once the data is filtered, highlight it, press CTRL + G, special, visible
cells only, press CTRL + C, go to the sheet where you want the information
and press CTRL + V

"(E-Mail Removed)" wrote:

> I am filtering my data that is in the range A:AJ starting on row 13
> with headers and having a variable ending row. My filter criteria is
> Column 1 not blank and Column 11 ="s". I would like to copy the
> filtered date (No headers) to another work book beginning in BE3.
> Thanks!
> .
>

 
Reply With Quote
 
sailor4life61@yahoo.com
Guest
Posts: n/a
 
      25th Mar 2010
On Mar 25, 11:59*am, Eduardo <Edua...@discussions.microsoft.com>
wrote:
> Hi,
> Once the data is filtered, highlight it, press CTRL + G, special, visible
> cells only, press CTRL + C, go to the sheet where you want the information
> and press CTRL + V
>
>
>
> "sailor4lif...@yahoo.com" wrote:
> > I am filtering my data that is in the range A:AJ starting on row 13
> > with headers and having a variable ending row. *My filter criteria is
> > Column 1 not blank and Column 11 ="s". *I would like to copy the
> > filtered date (No headers) to another work book beginning in BE3.
> > Thanks!
> > .- Hide quoted text -

>
> - Show quoted text -


Programtically?
 
Reply With Quote
 
Jef Gorbach
Guest
Posts: n/a
 
      25th Mar 2010
On Mar 25, 1:31*pm, "sailor4lif...@yahoo.com"
<sailor4lif...@yahoo.com> wrote:
> On Mar 25, 11:59*am, Eduardo <Edua...@discussions.microsoft.com>
> wrote:
>
>
>
>
>
> > Hi,
> > Once the data is filtered, highlight it, press CTRL + G, special, visible
> > cells only, press CTRL + C, go to the sheet where you want the information
> > and press CTRL + V

>
> > "sailor4lif...@yahoo.com" wrote:
> > > I am filtering my data that is in the range A:AJ starting on row 13
> > > with headers and having a variable ending row. *My filter criteria is
> > > Column 1 not blank and Column 11 ="s". *I would like to copy the
> > > filtered date (No headers) to another work book beginning in BE3.
> > > Thanks!
> > > .- Hide quoted text -

>
> > - Show quoted text -

>
> Programtically?


Sub FilterCopy()
With Columns("A:AJ")
.AutoFilter Field:=1, Criteria1:="<>"
.AutoFilter Field:=11, Criteria1:="s"
.Copy
.SpecialCells(xlCellTypeVisible).Copy _
Destination:=Worksheets("Sheet2").Range("BE3")
End With
Application.CutCopyMode = False
Cells.AutoFilter ''turn off autofilter
Worksheets("sheet2").Range("BE3").EntireRow.Delete 'to remove copied
header row
End Sub
 
Reply With Quote
 
sailor4life61@yahoo.com
Guest
Posts: n/a
 
      26th Mar 2010

>
> Sub FilterCopy()
> With Columns("A:AJ")
> * * .AutoFilter Field:=1, Criteria1:="<>"
> * * .AutoFilter Field:=11, Criteria1:="s"
> * * .Copy
> * * .SpecialCells(xlCellTypeVisible).Copy _
> * * * * Destination:=Worksheets("Sheet2").Range("BE3")
> End With
> Application.CutCopyMode = False
> Cells.AutoFilter *''turn off autofilter
> Worksheets("sheet2").Range("BE3").EntireRow.Delete *'to remove copied
> header row
> End Sub- Hide quoted text -
>

This does not work. It filters the data but does not copy to the new
sheet.

My question is a little more indepth than first posted.

I am opening a set of files, filtering the data and copying the
filtered data back to the original file. I have the routine for
opening the files and copying other data functioning correctly. Its
just the piece of running the filter and copying that data to the
basebook that I cannot get. All help is appreciated.


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Copy and paste data from Auto Filter / Subtotal (or apply a formula to filtered data) Harry Flashman Microsoft Excel Discussion 7 9th Oct 2007 04:39 PM
Copy data to filtered column Arif Ender Microsoft Excel Misc 0 28th Mar 2007 01:06 PM
Copy filtered data =?Utf-8?B?U2VjcmV0IFNxdWlycmVs?= Microsoft Excel Misc 3 28th Mar 2007 03:05 AM
RE: How to copy just the filtered data? =?Utf-8?B?V29vZHNleQ==?= Microsoft Excel Misc 1 16th Feb 2007 06:38 PM
Copy filtered data Hans Knudsen Microsoft Excel Misc 3 25th Nov 2005 01:29 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 08:28 AM.