Results 1 to 3 of 3

Copy a selected range based on cell criteria

Threaded View

  1. #1
    Registered User
    Join Date
    05-17-2013
    Location
    Amsterdam
    MS-Off Ver
    Excel 2010
    Posts
    11

    Copy a selected range based on cell criteria

    Hi guys,

    Tried several ways in order to fix my problem, but I can't seem to get it to work.

    I have a worksheet in which I want to select a certain range of cells, I then need it to filter in the last row of the selection for the word "Incompleet".
    Then it should copy the selected cells which are in front of the cell it filtered from and then past it into a different worksheet named "Incompleet" in the next empty row. This is what I have so far;

    Sub CopySelectedRangeBasedOnCriteria()
    
        Dim rng As Range
    
        Set rng = Selection
       
        Application.ScreenUpdating = False
         
        Range("rng").AutoFilter Field:=9, Criteria1:="1"
        AutoFilter.Range.Copy
        
        Sheets("Incompleet").Select
        NextRow = Cells(Rows.Count, 1).End(xlUp).Row + 1
        Cells(NextRow, 1).Select
        Selection.PasteSpecial Paste:=xlPasteValues
       
          
        AutoFilterMode = False
        Application.CutCopyMode = False
        Application.ScreenUpdating = True
       
    End Sub
    The column it must filter from will always be the 9th column, even though the selection can be made from anywhere within the worbook.

    I have the idea that I'm very close, but there seem to be some problems with the copying after the autofilter has taken place.

    Thanks in advanced for your help guys!!

    Test.xlsm
    Last edited by Ronny66; 09-10-2013 at 04:33 AM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Can I auto hide/unhide worksheets based on selected cell criteria.
    By cwashburn in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 06-17-2013, 04:06 PM
  2. [SOLVED] Macro to copy rows (in a range) based on a cell criteria
    By Taislin in forum Excel Programming / VBA / Macros
    Replies: 15
    Last Post: 03-23-2013, 07:54 PM
  3. Copy/Paste Range to Another Range based on Criteria
    By ExcelFinWizzard in forum Excel Programming / VBA / Macros
    Replies: 9
    Last Post: 06-13-2012, 09:35 AM
  4. Copy rows to new sheet based on date range selected on a form
    By drewship in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 05-19-2009, 11:40 AM
  5. Copy Range based on criteria
    By papaexcel in forum Excel General
    Replies: 4
    Last Post: 05-08-2009, 09:47 AM

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