Option Explicit
Sub CopySelectedSheets()
Dim buf As String
Dim buf2 As String
Dim ws As Worksheet
Dim CurrSht As Worksheet
Dim ShtNum As Long
Dim ScndSht As Boolean
Dim NewWB As Workbook
Set CurrSht = ActiveSheet
For Each ws In Worksheets
If buf = "" Then
buf = ws.Index & " - " & ws.Name
ElseIf Len(buf) > 45 Then
If Len(buf2) > 0 Then
buf2 = buf2 & Chr(10) & buf
Else
buf2 = buf
End If
buf = ws.Index & " - " & ws.Name
Else
buf = buf & " " & ws.Index & " - " & ws.Name
End If
Next ws
Do
ShtNum = Application.InputBox("Please enter a sheet number to copy:" _
& vbLf & buf2 & vbLf & buf, "Select a sheet", 0, Type:=1)
If ShtNum = 0 Then Exit Do
Sheets(ShtNum).Select (Not ScndSht)
ScndSht = True
Loop
ActiveWindow.SelectedSheets.Copy
Set NewWB = ActiveWorkbook
ThisWorkbook.Activate
CurrSht.Select
NewWB.Activate
Set NewWB = Nothing
Range("B21:B77").Select
Selection.Delete Shift:=xlToLeft
Range("G21:G77").Select
Selection.Delete Shift:=xlToLeft
Range("E21:E69").Select
Selection.Cut
Range("F21").Select
ActiveSheet.Paste
Range("E20").Select
Selection.Copy
Range("E21:E69").Select
Selection.PasteSpecial Paste:=xlPasteFormats, Operation:=xlNone, _
SkipBlanks:=False, Transpose:=False
Application.CutCopyMode = False
ActiveWindow.SmallScroll Down:=-3
Columns("D:D").ColumnWidth = 23.86
ActiveWindow.SmallScroll Down:=-6
Columns("D:D").ColumnWidth = 27.29
Range("R21:R77").Select
Selection.Insert Shift:=xlToRight, CopyOrigin:=xlFormatFromLeftOrAbove
Range("S21:S77").Select
Selection.Insert Shift:=xlToRight, CopyOrigin:=xlFormatFromLeftOrAbove
Range("R20").Select
Selection.Copy
Range("R22:S65").Select
Selection.PasteSpecial Paste:=xlPasteFormats, Operation:=xlNone, _
SkipBlanks:=False, Transpose:=False
Application.CutCopyMode = False
Range("A1").Select
ActiveWindow.SmallScroll Down:=-57
Columns("E:E").ColumnWidth = 11.29
ActiveWindow.SmallScroll Down:=-24
Columns("D:D").ColumnWidth = 35.29
ActiveWindow.SmallScroll Down:=-30
End Sub
Bookmarks