use VBA to copy from multiple spreadsheets

niffer_88

New Member
Joined
Mar 21, 2015
Messages
13
I am looking to use a macro to copy and paste information stored across multiple spreadsheets, in the same work book in to a specific sheet in specific locations on that sheet. This will then need to move on to another sheet into the workbook and copy and paste a different array of information from the multiple spreadsheets.

I am ok in VBA once I get started but im not great as starting to write code
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
Yes this can be done. But we need exact details. Copy data from where and paste it where.
We need to know the name of the sheet where we post the data to. Will we be copying data from all the sheets in the workbook?

For example:

Copy data in Range("A1:A10") from all sheets in workbook except for sheet named "Master"
And paste this data into column "B" of sheet named "Master"
 
Upvote 0
If it's something you do manually, just record your keystrokes as you're doing it. The macro will write itself.
 
Upvote 0
Heya, I am not looking to copy from every sheet but a few out the workbook, there are more sheets for the information that is being copied to go into.

so for example I need to copy the information into a sheet called 'Restaurant wall', the information I need to copy this from are in sheets called Cookshop, Textiles, Bathshop, Home Org, Lighting and Home Dec, the range of data for each of these sheets is A8:M17, I then need this information to go in the 'Resturant wall' sheet in specific locations so

Cookshop in to A7

Textiles into A33

Bathshop into A54

Home Org into A76

Lighting into A99

Home dec into A120


Then I need to repeat the process so that I get information from the 'cookshop etc' sheets in to around 8 other sheets.

apologies about the delay

thanks
 
Upvote 0
Try
Code:
Sub Copydetails()

    Dim ShtArr As Variant
    Dim Ws As Worksheet
    Dim Sht As Variant

    ShtArr = Array("Cookshop", "Textiles", "Bathshop", "Home Org", "Lighting", "Home Dec")
    
    With Sheets("Restaurant wall")
        For Each Sht In ShtArr
            Set Ws = Sheets(Sht)
            Select Case Ws.Name
                Case "Cookshop"
                    Ws.Range("A8:M17").Copy .Range("A7")
                Case "Textiles"
                    Ws.Range("A8:M17").Copy .Range("A33")
                Case "Bathshop"
                    Ws.Range("A8:M17").Copy .Range("A54")
            End Select
        Next Sht
    End With
    
End Sub
You'll need to add the rest of the Cases
 
Upvote 0

Forum statistics

Threads
1,216,124
Messages
6,128,985
Members
449,480
Latest member
yesitisasport

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