VBA copy/paste from variable workbook to static workbook

dkovall

New Member
Joined
Aug 17, 2018
Messages
13
I'm certain this question has been answered numerous times, but I haven't found an answer that fits my particular needs.
I'm trying to copy several cells from 4 different sheets of a variable workbook named by date. It would be saved as "17-Aug-18" today for example.
Then, I'd like to paste the copied data into the next available row of a static worksheet called "Production Master Report".
I haven't done any coding in years, and can't remember the little I did know.
Any help would be GEATLY appreciated!
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Place this macro in a standard module in each variable workbook and run it from there.
Code:
Sub CopyRanges()
    Application.ScreenUpdating = False
    Dim LastRow As Long, x As Long
    Dim desWB As Workbook, srcWB As Workbook, desWS As Worksheet
    Set srcWB = ActiveWorkbook
    Set desWB = Workbooks.Open("X:\CMC\MINE\MINEPLAN\Development Projects\2018 Dev.Projects\Luce Phase E - Stage 2\9.Reports\1. Daily Production Report\Production Report Master.xlsm")
    Set desWS = desWB.Sheets("Sheet1")
    LastRow = desWS.Range("C12:BN154").Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row + 1
    With srcWB.Sheets("Haul")
        desWS.Range("C" & LastRow & ":F" & LastRow).Value = Application.WorksheetFunction.Transpose(.Range("F34:F37").Value)
        desWS.Range("G" & LastRow & ":I" & LastRow).Value = Application.WorksheetFunction.Transpose(.Range("H34:H36").Value)
        desWS.Range("J" & LastRow & ":M" & LastRow).Value = Application.WorksheetFunction.Transpose(.Range("J34:J37").Value)
        desWS.Range("N" & LastRow & ":P" & LastRow).Value = Application.WorksheetFunction.Transpose(.Range("L34:L36").Value)
        desWS.Range("Q" & LastRow).Value = Application.WorksheetFunction.Transpose(.Range("N34").Value)
    End With
    With srcWB.Sheets("Drills")
        desWS.Range("R" & LastRow & ":X" & LastRow).Value = .Range("E30:K30").Value
    End With
    With srcWB.Sheets("Fuel")
        desWS.Range("Y" & LastRow & ":AA" & LastRow).Value = .Range("F10:H10").Value
        desWS.Range("AB" & LastRow & ":AD" & LastRow).Value = .Range("F21:H21").Value
        desWS.Range("AE" & LastRow & ":AG" & LastRow).Value = .Range("F45:H45").Value
        desWS.Range("AH" & LastRow & ":AJ" & LastRow).Value = .Range("F60:H60").Value
        desWS.Range("AK" & LastRow & ":AM" & LastRow).Value = .Range("FF74:H74").Value
    End With
    With srcWB.Sheets("Personnel")
        desWS.Range("AN" & LastRow & ":AV" & LastRow).Value = Application.WorksheetFunction.Transpose(.Range("D10:D18").Value)
        desWS.Range("AW" & LastRow & ":BE" & LastRow).Value = Application.WorksheetFunction.Transpose(.Range("G10:G18").Value)
        desWS.Range("BF" & LastRow & ":BN" & LastRow).Value = Application.WorksheetFunction.Transpose(.Range("J10:J18").Value)
    End With
    Application.ScreenUpdating = True
End Sub
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,334
Members
452,636
Latest member
laura12345

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