Modify sub to include sheetname in new col

M

Max

Looking for help to modify the sub below (from Don Guillett), so that it
also prints the source sheetnames in a new col to the right of the appended
data in "Summary". Thanks.

Sub newsummarysheet()
'Don Guillett
Sheets.Add
ActiveSheet.Name = "Summary"
For Each ws In ActiveWorkbook.Sheets
dlr = Cells(Rows.Count, "a").End(xlUp).Row + 1
slr = ws.Cells(Rows.Count, "a").End(xlUp).Row
If ws.Name <> "Summary" Then
ws.Rows("1:" & slr).Copy Cells(dlr, 1)
End If
Next ws
End Sub
 
M

Mike H

Max,

This writes the shhet name at each change of source data

Sub newsummarysheet()
'Don Guillett
Sheets.Add
ActiveSheet.Name = "Summary"
For Each ws In ActiveWorkbook.Sheets
dlr = Cells(Rows.Count, "a").End(xlUp).Row + 1
slr = ws.Cells(Rows.Count, "a").End(xlUp).Row

If ws.Name <> "Summary" Then
ws.Rows("1:" & slr).Copy Cells(dlr, 1)
Cells(dlr, 1).Offset(, 1) = ws.Name
End If
Next ws
End Sub

Mike
 
M

Mike H

Ah,

Just noticed this is copying the entire row not kust column A so try this
instead

Sub newsummarysheet()
For Each ws In ActiveWorkbook.Sheets
X = WorksheetFunction.Max(X, ws.UsedRange.Columns.Count)
Next
'Don Guillett
Sheets.Add
ActiveSheet.Name = "Summary"
For Each ws In ActiveWorkbook.Sheets
dlr = Cells(Rows.Count, "a").End(xlUp).Row + 1
slr = ws.Cells(Rows.Count, "a").End(xlUp).Row

If ws.Name <> "Summary" Then
ws.Rows("1:" & slr).Copy Cells(dlr, 1)

Cells(dlr, 1).Offset(, X) = ws.Name
End If
Next ws
End Sub

Mike
 
M

Max

Mike, thanks. Could I have it tweaked a little further?
Sheetnames to print down to the last row instead of just the 1st row, and
all sheetname prints to be in text. The latter as I don't want Excel to
convert any sheetnames such as: January 2008 automatically into real dates.
Thanks

Max
 
M

Max

Thanks, Roy. It works fine. One tweak request, to have all sheetname prints
to be in text. As I don't want Excel to convert any sheetnames such as:
January 2008 automatically into real dates. Muchas Gracias`

Max
 
M

Mike H

Try this

Sub newsummarysheet()
For Each ws In ActiveWorkbook.Sheets
x = WorksheetFunction.Max(x, ws.UsedRange.Columns.Count)
Next
'Don Guillett
Sheets.Add
ActiveSheet.Name = "Summary"
For Each ws In ActiveWorkbook.Sheets
dlr = Cells(Rows.Count, "a").End(xlUp).Row + 1
slr = ws.Cells(Rows.Count, "a").End(xlUp).Row

If ws.Name <> "Summary" Then
ws.Rows("1:" & slr).Copy Cells(dlr, 1)

Cells(dlr, 1).Offset(, x) = ws.Name
End If
Next ws
lastrow = Sheets("Summary").UsedRange.Rows.Count
For b = 2 To lastrow
Cells(b, x + 1).NumberFormat = "@"
If Cells(b, x + 1).Offset(1, 0).Value = "" Then
Cells(b, x + 1).Offset(1, 0).Value = Cells(b, x + 1).Value
End If
Next
End Sub

Mike
 
M

Max

Mike,

The printdown's fine but the sheetnames are still getting converted into
date serial nums?, eg sheetname: "January 2008" prints now as: 39448,
"February 2008" as: 39479. I need it simply as text: January 2008, February
2008. Thanks for further insights.

Max
 
M

Mike H

Hi,

Try this

Sub newsummarysheet()
For Each ws In ActiveWorkbook.Sheets
x = WorksheetFunction.Max(x, ws.UsedRange.Columns.Count)
Next
'Don Guillett
Sheets.Add
ActiveSheet.Name = "Summary"
For Each ws In ActiveWorkbook.Sheets
dlr = Cells(Rows.Count, "a").End(xlUp).Row + 1
slr = ws.Cells(Rows.Count, "a").End(xlUp).Row

If ws.Name <> "Summary" Then
ws.Rows("1:" & slr).Copy Cells(dlr, 1)

With Cells(dlr, 1).Offset(, x)
.NumberFormat = "@"
.Value = ws.Name
End With
End If
Next ws
lastrow = Sheets("Summary").UsedRange.Rows.Count
For b = 2 To lastrow
Cells(b, x + 1).Offset(1, 0).NumberFormat = "@"
If Cells(b, x + 1).Offset(1, 0).Value = "" Then
Cells(b, x + 1).Offset(1, 0).Value = Cells(b, x + 1).Value
End If
Next
End Sub


Mike
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top