any ideas??
attached a sheet
If column D is greater than 0 then I want to copy the entire row to Sheet 2
basically, I only want to see rows with a quantity on Sheet 2
this is an ongoing, feed so I can't use Filter
THANKS!!!
any ideas??
attached a sheet
If column D is greater than 0 then I want to copy the entire row to Sheet 2
basically, I only want to see rows with a quantity on Sheet 2
this is an ongoing, feed so I can't use Filter
THANKS!!!
Hello Dadof2,
This code may help:-
Here is a sample work book:-![]()
Sub CopyIt() Application.ScreenUpdating = False Dim lRow As Long Sheets("Sheet1").Select lRow = Range("A" & Rows.Count).End(xlUp).Row For Each cell In Range("D2:D" & lRow) If cell <> 0 Then cell.EntireRow.Copy Sheets("Sheet2").Range("A" & Rows.Count).End(xlUp).Offset(1, 0) End If Next cell Sheets("Sheet2").Range("A1:K" & Rows.Count).RemoveDuplicates Columns:=1, Header:=xlYes Sheets("Sheet2").Columns.AutoFit Sheets("Sheet2").Select Application.ScreenUpdating = True End Sub
Let us know if it does the job for you.
Cheerio,
vcoolio.
Hi.
Can you explain that.. it would be much fast to:this is an ongoing, feed so I can't use Filter
1. Autofilter your range by column D for values >0.
2. Copy the visible rows after autofilter to the other sheet. No loop needed..
Why can't you use autofilter?
Doing this, do I have to manually click the auto-filter each time? Currently, I pull in the info using an API and would like this to automatically look for the bonds with greater than zero quantity and run. I am trying to do this with as little steps as possible. I will set this up and have some "older" users use it so it needs to be as dummy proof as possible. does that make sense???
THX
Mark
Hi Dadof2,
I didn't think to remove duplicates like coolio - but this works with your sample:
![]()
Sub Dadd(): Dim w1 As Worksheet, w2 As Worksheet, r As Long, i As Long, j As Long Set w1 = Sheets("Sheet1"): Set w2 = Sheets("Sheet2"): j = 2 r = w1.Cells.Find(what:="*", SearchOrder:=xlRows, SearchDirection:=xlPrevious, LookIn:=xlValues).Row For i = 2 To r If w1.Cells(i, 4).Value <= 0 Then GoTo GetNext w1.Cells(i, 1).EntireRow.copy w2.Cells(j, 1): j = j + 1 GetNext: Next i: End Sub
If I've helped you, please consider adding to my reputation - just click on the liitle star at the left.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~(Pride has no aftertaste.)
You can't do one thing. XLAdept
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~aka Orrin
Okay, I ran it and have a question
The first time it runs it works, but if I run it again (say later in the day) I get the old info and and new bonds that meet the criteria. How do I get it to clear the Sheet2 and give me a fresh look every time??
Thanks
Mark
Thanks for the help!
Hi..
Try this..
Note: You will need to add column headers like i have in the attached Workbook..
![]()
Private Sub CommandButton1_Click() Application.ScreenUpdating = False With Range("A1").CurrentRegion Sheets("Sheet2").Range("A1").CurrentRegion.Offset(1).ClearContents .AutoFilter 4, ">0" .Offset(1).Resize(.Rows.Count - 1).Copy Sheets("Sheet2").Range("A" & Sheets("Sheet2").Range("A" & Rows.Count).End(xlUp).Row).Offset(1) .AutoFilter End With Application.ScreenUpdating = True Sheets("Sheet2").Select End Sub
You're welcome and thanks for the rep!
Maybe:
![]()
Sub Dadd(): Dim w1 As Worksheet, w2 As Worksheet, r As Long, i As Long, j As Long Set w1 = Sheets("Sheet1"): Set w2 = Sheets("Sheet2"):w2.Cells(1).Clear: j = 2 r = w1.Cells.Find(what:="*", SearchOrder:=xlRows, SearchDirection:=xlPrevious, LookIn:=xlValues).Row For i = 2 To r If w1.Cells(i, 4).Value <= 0 Then GoTo GetNext w1.Cells(i, 1).EntireRow.copy w2.Cells(j, 1): j = j + 1 GetNext: Next i: End Sub
Thanks again for the rep!
If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED. Thanks.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks