Results 1 to 8 of 8

Copy filtered rows in one worksheet and paste to other worksheet

Threaded View

  1. #1
    Registered User
    Join Date
    02-03-2013
    Location
    Calgary, Canada
    MS-Off Ver
    Excel 2007-2010
    Posts
    7

    Copy filtered rows in one worksheet and paste to other worksheet

    Friends,
    Totally new to the Excel VBA or Macros. Was just doing first Macro where I want to filter rows in one worksheet and copy them to other worksheet but macro copies all the row to other work sheet. Please see below and guide. Thanks for your help.
    Sub Macro2()
    '
    ' Macro2 Macro
    '
    
    '
        ActiveSheet.Range("$A$1:$Q$480").AutoFilter Field:=9, Criteria1:= _
            "<25/01/2013", Operator:=xlAnd
          Rows("2:480").Select
        Selection.Copy
        Sheets("Filter BL Date").Select
        Range("A2").Select
        ActiveSheet.Paste
    Last edited by vlady; 02-03-2013 at 10:55 PM. Reason: code tags

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1