Copy range of data from multiple worksheets based on numerical criteria

CampbellSoup

New Member
Joined
Apr 27, 2019
Messages
9
I have been playing with this code for a few days now. :mad: I have a spreadsheet that has about 10 tabs. Only 4 of the tabs I need to use for this code.

I created a master sheet called "Quickbooks" to make uploading materials into QB easier for the team and save hours a week for the production staff.

- They are all 4 formatted the same. "Data Take-Off", "Security Take-Off", "Electrical Take-Off", "AV Map Take-Off". We just use a different worksheet for each department to keep them separated during estimating.
- Column D is where the number will be at for the unit amounts.
-Range C-H of that particular row is what I need to copy to the "Quickbooks" sheets if a number is populated in D. "Next available row"
-I also need to be able to do this across all 4 worksheets simultaneously so I can keep the formatting of the "Quickbooks" sheet intact as shown below, unless there is an easier way to "rinse and repeat". This being because sometimes we go in and update quantities on these sheets last minute and will need to update the master sheet with the new quantities and not duplicate line items for quickbooks purposes.

Here is the basic code I got to work on a dummy spreadsheet when only dealing with one sheet at a time. I just can't seem to figure out how to call on multiple worksheets at the same time with the same commands "IF"/"THEN".

Sub qbcopy()

Dim i, lastrow

lastrow = Sheets("Data Take-Off").Range("D" & Rows.Count).End(xlUp).Row
Sheets("Quickbooks").Range("A2:I1500").ClearContents
Sheets("Quickbooks").Range("A2:I1500").ClearFormats
For i = 30 To lastrow
If Sheets("Data Take-Off").Cells(i, "D").Value > 0 Then
Sheets("Data Take-Off").Range(Cells(i, "C"), Cells(i, "H")).Copy
Destination:=Sheets("Quickbooks").Range("A" & Rows.Count).End(xlUp).Offset(1)
End If
Next i
End Sub
 
Just noticed a glitch in Post #10 , this will fix it.

Code:
Sub QBcopy()
Dim ary As Variant, i As Long, rng As Range, strt As Range, lr As Long
ary = Array("Data Take-Off", "Security Take-Off", "Electrical Take-Off", "AV Map Take-Off")
Sheets("QuickBooks").UsedRange.Offset(1).ClearContents
Sheets("Quickbooks").Range("A2:I1500").ClearContents
Sheets("Quickbooks").Range("A2:I1500").ClearFormats
    For i = LBound(ary) To UBound(ary)
        With Sheets(ary(i))
             lr = .Cells.Find("*", , xlValues, xlPart, xlByRows, xlPrevious).Row
            If .Cells(25, "D") = "" Then
                Set strt = .Cells(25, "D").End(xlDown).Offset(, -1)
            Else
                Set strt = .Cells(25, "C")
            End If
            Set rng = .Range(strt, "H" & lr)
            rng.AutoFilter 2, ">0"
            If Application.CountA(rng.SpecialCells(xlCellTypeVisible)) > 0 Then
                rng.SpecialCells(xlCellTypeVisible).Copy _
                Sheets("QuickBooks").Cells(Rows.Count, 1).End(xlUp).Offset(1)
            End If
            .AutoFilterMode = False
        End With
    Next
End Sub
 
Upvote 0

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
This is excellent and works great. Now how would I bring in the next column to the left? I've tried modifying the "-1" to "-2" but it doesn't seem to quite work like that. They added a new column to the left of the conditional column on me right when we were able to get it working properly. BUT, this works great as it is. I'm sure I can tinker with it to get it working.
 
Upvote 0

Forum statistics

Threads
1,214,649
Messages
6,120,732
Members
448,987
Latest member
marion_davis

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top