+ Reply to Thread
Results 1 to 7 of 7

Copy and paste excluding zeros

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    12-02-2008
    Location
    Brisbane
    MS-Off Ver
    2016
    Posts
    811

    Copy and paste excluding zeros

    How can I copy a range and paste it excluding the lines with a zero value. The sample attached explains it better.

    Thanks for any ideas.
    Attached Files Attached Files
    Last edited by BRISBANEBOB; 04-08-2009 at 01:12 AM.

  2. #2
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Copy and paste excluding zeros

    Give this a whirl, make sure there is nothing below the data set to evaluate.
    Option Explicit
    Sub CopySelect()
    Dim lastrow As Long, firstrow As Long, i As Integer, n As Integer
    lastrow = Range("B" & Rows.Count).End(xlUp).Row
    firstrow = Range("B" & lastrow).End(xlUp).Row + 1
    n = lastrow + 5
    
    For i = firstrow To lastrow
        If Range("H" & i).Value > 0 Then
            Rows(i).EntireRow.Copy Rows(n)
            n = n + 1
        End If
    Next i
    
    End Sub
    This exactly duplicates your sample. If you need the output to go somewhere else, we'll adjust the part in red above.
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    ?None of us is as good as all of us? - Ray Kroc
    ?Actually, I *am* a rocket scientist.? - JB (little ones count!)

  3. #3
    Forum Contributor
    Join Date
    12-02-2008
    Location
    Brisbane
    MS-Off Ver
    2016
    Posts
    811

    Re: Copy and paste excluding zeros

    It's a beaut! Can you explain how the code below works? I can't figure the

    "H" & i

    bit.

    Thanks - your help is appreciated

  4. #4
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Copy and paste excluding zeros

    In your sample sheet, the earlier part of the code has already determined that the lastrow is row(16) and the firstrow is row(7).

    (i) becomes a variable starting at 7 and progressing up through 16. One at a time we we evaluate the cell H(i) for its value. So the first time through it's cell H(7) which has a value of 3.30 which is greater than zero. Since it does, it copies the whole row(7) to row(n) and then increments n+1, then goes to the next i, which is row(8)...and it does it again.

  5. #5
    Forum Contributor
    Join Date
    12-02-2008
    Location
    Brisbane
    MS-Off Ver
    2016
    Posts
    811

    Re: Copy and paste excluding zeros

    Thanks very much

  6. #6
    Registered User
    Join Date
    05-13-2009
    Location
    London, England
    MS-Off Ver
    Excel 2007
    Posts
    1

    Re: Copy and paste excluding zeros

    In Excel 2007, you can use the Data tab, and there you will find a function "Remove Duplicates".

    It can be used by adding a new column which counts from 1 downwards (on the left of your dataset, and another adjacent which has logic which represents that value unless the box to the right (the empty datacell in your real data) is empty otherwise make it an X(or something non numerical).

    Filter the entire dataset for duplicates, but only tick the new column with x'es for parsing.

    Bit long winded but no script required! There are some powerful time savers in that tab - worth playing with if you are blessed with office 2k7.
    Last edited by Pensive; 05-13-2009 at 07:13 AM.

  7. #7
    Forum Contributor
    Join Date
    12-02-2008
    Location
    Brisbane
    MS-Off Ver
    2016
    Posts
    811

    Re: Copy and paste excluding zeros

    Thanks for that information - I've tried it and it works great.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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