Fred,
Try something like
Sub CopyTheSheets()
Dim DestWB As Workbook
Dim WS As Worksheet
Set DestWB = Workbooks("Master.xls")
For Each WS In ThisWorkbook.Worksheets
With DestWB.Worksheets
WS.Copy after:=.Item(.Count)
End With
Next WS
End Sub
--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting
www.cpearson.com
(email on the web site)
"Fred" <(E-Mail Removed)> wrote in message
news:2AFA9BEE-4B4F-453D-BD73-(E-Mail Removed)...
>
> I would like to create a macro that will all copy all of the worksheets in
> the current workbook into the master workbook.
>
> Please help me create this macro.
>
> Thank you very much.