+ Reply to Thread
Results 1 to 2 of 2

Thread: filter data in one worksheet and copy into another

  1. #1
    Registered User
    Join Date
    10-06-2011
    Location
    Leeds
    MS-Off Ver
    Excel 2003
    Posts
    1

    filter data in one worksheet and copy into another

    I have a worksheet (2003) with data of tiems being sent out in the post, for each devision in the company.
    I want to filter this data to just show my devision on a seperate spreadsheet, within the same workbook.

    hope that makes sence?!

  2. #2
    Registered User
    Join Date
    11-20-2010
    Location
    Miami, Fl
    MS-Off Ver
    Excel 2007
    Posts
    90

    Re: filter data in one worksheet and copy into another

    I have done this using Code. The basic premise I used was within a range if the rowIndex.Hidden was true then the item was filtered if false then copy elsewhere.

    'Say for a worksheet that has a filter
    With YourWorksheet
       For each rowIndex in .UsedRange.Rows
          If rowIndex.Hidden = False then
             'put your copy commands/logic here
          End If
       Next
    End With
    Hope this gets you started...
    Last edited by tkowal; 10-06-2011 at 02:58 PM. Reason: Putting proper tags in the text

+ 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.2.0