+ Reply to Thread
Results 1 to 5 of 5

Copy portion of filtered list

Hybrid View

  1. #1
    Forum Guru
    Join Date
    08-26-2007
    Location
    London
    Posts
    4,606

    Re: Copy portion of filtered list

    No, you don't need to select the range. To copy it you could use
    Sub x()
    
    Dim rng As Range
    
    Set rng = Range("D5", Range("K" & Rows.Count).End(xlUp)).SpecialCells(xlCellTypeVisible)
    
    rng.Copy Sheet2.Range("A1")
    
    End Sub

  2. #2
    Registered User
    Join Date
    11-17-2008
    Location
    Texas
    Posts
    15

    Re: Copy portion of filtered list

    Thank you very much Stephen! The code works perfect.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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