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.
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.
Last edited by BRISBANEBOB; 04-08-2009 at 01:12 AM.
Give this a whirl, make sure there is nothing below the data set to evaluate.
This exactly duplicates your sample. If you need the output to go somewhere else, we'll adjust the part in red above.![]()
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
_________________
Microsoft MVP 2010 - Excel
Visit: Jerry Beaucaire's Excel Files & Macros
If you've been given good help, use theicon 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!)
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
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.
Thanks very much
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.
Thanks for that information - I've tried it and it works great.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks