+ Reply to Thread
Results 1 to 4 of 4

Select All But 10 Autofilter Rows

Hybrid View

  1. #1
    Registered User
    Join Date
    03-01-2012
    Location
    Oklahoma
    MS-Off Ver
    Excel 2007
    Posts
    1

    Select All But 10 Autofilter Rows

    Hello everyone!

    I've lurked here for a very long time to get help with my VBA coding. Today I can't seem to find the answer to my problem even though I'm sure its staring me in the face.

    What I'm trying to do is filter a table of roughly 7000 rows. In each row I have an employee id, name, date and score information. Each employee has roughly 50 entries and I'm trying to write a macro that will filter by each employee and delete all but 10 of their entries. The problem that I'm running into is that when I select the autofilter range and resize my selection by 10 rows (to select everything I need to delete), it is resizing by 10 rows rather than 10 visible rows, thus leaving everything (even the 10 rows I want to save) selected.

    Thank you for your help!

  2. #2
    Valued Forum Contributor
    Join Date
    12-05-2011
    Location
    Toronto, Canada
    MS-Off Ver
    Excel 2010 & 2013
    Posts
    308

    Re: Select All But 10 Autofilter Rows

    Hi Chris

    Can you sort the data first? You could add a temporary column with the row number in (as a value, not as a formula) so you can 'un-sort' it later. You can then delete the temporary column. The problem is that macros ignore the autofilter when counting rows. Sorting gets around this - you wouldn't need to use Autofilter.

    Alternatively, go through the entire list keeping a record (in a temporary table or array?) of how many times you've seen each ID. When it reaches 10, start deleting rows with that ID in.

    Cheers, Rob.

  3. #3
    Forum Moderator davesexcel's Avatar
    Join Date
    02-19-2006
    Location
    Regina
    MS-Off Ver
    MS 365
    Posts
    13,525

    Re: Select All But 10 Autofilter Rows

    To best describe or illustrate your problem you would be better off attaching a dummy workbook, the workbook should contain the same structure and some dummy data of the same type as the type you have in your real workbook - so, if a cell contains numbers & letters in this format abc-123 then that should be reflected in the dummy workbook. Don't upload a picture when you have a workbook question. None of us is inclined to recreate your data. Upload the workbook and manually add an 'after' situation so that we can see what you expect. In addition clearly explain how you get the results..
    To attach a file to your post, you need to be using the main 'New Post' or 'New Thread' page and not 'Quick Reply'.
    To use the main 'New Post' page, click the 'Post Reply' button in the relevant thread.

    On this page, below the message box, you will find a button labelled 'Manage Attachments'.
    Clicking this button will open a new window for uploading attachments.

    You can upload an attachment either from your computer or from another URL by using the appropriate box on this page.
    Alternatively you can click the Attachment Icon to open this page.

    To upload a file from your computer, click the 'Browse' button and locate the file.

    To upload a file from another URL, enter the full URL for the file in the second box on this page.
    Once you have completed one of the boxes, click 'Upload'.

    Once the upload is completed the file name will appear below the input boxes in this window.
    You can then close the window to return to the new post screen.

  4. #4
    Forum Expert dangelor's Avatar
    Join Date
    09-06-2011
    Location
    Indiana, USA
    MS-Off Ver
    MS365 V.2406
    Posts
    2,310

    Re: Select All But 10 Autofilter Rows

    Try using the SpecialCells(xlCellTypeVisible) method.

+ 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