Results 1 to 6 of 6

copy rows based on 1 criteria + user input + pastevalues (almost there...)

Threaded View

  1. #3
    Registered User
    Join Date
    05-12-2011
    Location
    Portugal
    MS-Off Ver
    Excel 2007
    Posts
    14

    Re: copy rows based on 1 criteria + user input + pastevalues (almost there...)

    Many thanks for the quick reply JBeaucaire, unfortunately it doesn't work...it always says that there where no matches.

    I tried to delete the inputbox criteria to see if I could understand the error and it started to work but only copying the cells in column A. I changed a little more the code and it started to copy almost all cells, the problem is that it can't paste empty cells.

    Dim LR As Long, Found As Boolean
    
       With Sheets("Sheet1")
            .AutoFilterMode = False
            .Rows(2).AutoFilter 11, "END"
            LR = .Range("B" & .Rows.Count).End(xlUp).Row
            If LR > 2 Then
                Found = True
                .Range("A3:AB" & LR).Copy
                Sheets("Sheet2").Range("A" & Rows.Count).End(xlUp).Offset(1).PasteSpecial xlPasteValues
            End If
            .AutoFilterMode = False
        End With
    
        If Found Then
            MsgBox "All matching data has been copied."
        Else
            MsgBox "No matches found, nothing copied"
    Also this is without the string verification. I will try to understand all the code that you used to see if I find a solution.

    EDIT: I edited the line:
    .Range("A3:AB" & LR).Copy -> Since AB is the last column with data.

    EDIT2:tried to add an attachment but no joy... (xlsm < 30kb)
    Last edited by Dieneces; 07-22-2013 at 11:13 AM. Reason: attachment

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED]Hide Rows and Columns Based on User Input
    By thesteve in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 01-31-2013, 01:32 PM
  2. Macro to Copy Rows based on User Input
    By CharterJP in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 07-24-2012, 06:13 PM
  3. Automate formulated rows based on user input
    By G2S in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 02-01-2012, 10:06 PM
  4. macro to copy cells based on user input
    By pankaj2145 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 12-03-2009, 04:54 AM
  5. Delete rows based on user input
    By Militia in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 03-10-2009, 06:33 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