Consolidate worksheets & copy the name of the tab in a column

boonlecxe

New Member
Joined
Apr 11, 2014
Messages
4
Hello,

I am trying to consolidate a spreadsheet with 45 worksheets. I want to copy all the data into one worksheet and call it master.
I also need to copy the name of the worksheet next to the data in a separate column.

I have three columns:

1) Recipient
2) Email Address
3) Comments

the macro should create a code to pull the name of the worksheet and put it in a fourth column.
I have attached screenshots to better explain my requirement.

A search through the forum gave me code to consolidate data from different worksheets, however i also need to be able to copy the name of the worksheet in the column.


CURRENT Spreadsheet


RecipientEmail AddressComment

<tbody>
</tbody>









Expected Spreadsheet


RecipientEmail AddressCommentWorksheet Name

<tbody>
</tbody>







Here is the code i used to consolidate the data.

Sub CombineData()
Dim Sht As Worksheet
For Each Sht In ActiveWorkbook.Worksheets
If Sht.Name <> "Master" And Sht.Range("A2").Value <> "" Then
Sht.Select
LastRow = Range("A65536").End(xlUp).Row
Range("A2", Cells(LastRow, "M")).Copy
Sheets("Master").Select
Range("A65536").End(xlUp).Offset(1, 0).Select
ActiveSheet.Paste
Sht.Select
Range("A2", Cells(LastRow, "M")).ClearContents
Else
End If
Next Sht




End Sub



Thank you for the help.
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
I have slightly modified your macro and added an undo macro
run undo macro first and then your macro
it is not necessary to select each sheet or cell(s) to be copied and to be pasted. you can use with and end with
if you use with
dot is subequent coe


Code:
Sub CombineData()
Dim Sht As Worksheet, LastRow As Integer, shname As String, dest As Range


For Each Sht In ActiveWorkbook.Worksheets
If Sht.Name <> "Master" And Sht.Range("A2").Value <> "" Then
'Sht.Select
With Sht
shname = .Name
LastRow = .Cells(Rows.Count, "A").End(xlUp).Row
Range(.Range("A2"), .Cells(LastRow, "C")).Copy     ' why M why not C az there are only 3 colmns
With Sheets("Master")


Set dest = .Cells(Rows.Count, "A").End(xlUp).Offset(1, 0)
dest.PasteSpecial


.Cells(dest.Row, "D") = shname


'ActiveSheet.Paste
'Sht.Select
'Range("A2", Cells(LastRow, "M")).ClearContents
End With


End With
End If
Next Sht
End Sub

Code:
Sub undo()
Worksheets("master").Cells.Clear
End Sub
 
Last edited:
Upvote 0
Hello, I have a followup question can i automate this process ?
everytime i add a new tab the data should automatically be copied into the master sheet.
 
Upvote 0
An update to the question i posted above,

I tried using the below code.


Private Sub Workbook_Open()'Run YourSub at 6pmApplication.OnTime TimeValue("18:00:00"), "YourSub"End SubI changed the time to my current time plus 5 minutes & changed the name of the macro and saved the code to thisworkbook module. the macro doesnt run , can any one offer me any suggestions to troubleshoot it ?</pre>
 
Upvote 0
another method is
1. open the file
2.introduce new sheet with data
3. sun write a event code
4. you have to thing of event with whic a code will be run to copy the new sheet to matersheet
5. i suggest THE EVENT MAY BE - doubleclick A1 of the just created new sheet
6. can you write an event code (double clicking active sheet
check in the web about
Code:
Private Sub Workbook_SheetBeforeDoubleClick(ByVal Sh As Object, ByVal Target As Range, Cancel As Boolean)


End Sub

you have to try some expleriments and test them.

this will be a good exercise for you.

also wait for some expert to give better ideas
 
Upvote 0

Forum statistics

Threads
1,214,651
Messages
6,120,739
Members
448,989
Latest member
mariah3

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