Hi guys ...new to forum... am moderately good in Excel but trying to get head a round VB... so was looking for some help.
My problem
I want to extract multiple cell (specific cells) data from multiple sheets to make a table for easy analysis. I am trying VB as this would be the easiest and each sheet has 100 or so specific cells. Below is what I want to do, below that is the code I have found but cant figure out how to alter it to get it to retrieve additional lines. Can anyone help... thanks
What I am looking for is basically
Macros go to sheet2 and get data from C1, C5, D10, E15, C22 etc and get put data into sheet 1 across column.
Macros go to sheet3 and get data from C1, C5, D10, E15, C22 etc and get put data into sheet 1 across column, below previous data
.....
Does this make sense? And I will be adding additional sheets as the work goes on....
Sub MakeSummaryTable()
Dim ws As Worksheet
Application.ScreenUpdating = False
Sheets("Sheet1").Activate
For Each ws In Worksheets
If ws.Name <> "Sheet1" Then
ws.Range("C10").Copy
ActiveSheet.Paste Range("A65536").End(xlUp).Offset(1, 0)
End If
Next ws
Application.ScreenUpdating = True
End Sub
Bookmarks