Hi there
Nate Oliver helped me by making the following code, but there is a small thing that is missing is that I would like it copy the values to the workbook!
Sub cPy()
Dim ws As Worksheet
For Each ws In ThisWorkbook.Worksheets
On Error Resume Next 'In case "Day.xls" is missing sheet
If Left(ws.Name, 1) = 3 Then _
ws.Cells.Copy Workbooks("Day.xls").Sheets(ws.Name).[a1]
Next ws
End Sub
Best reg. daniel
"from the land of the ice and snow"
Nate Oliver helped me by making the following code, but there is a small thing that is missing is that I would like it copy the values to the workbook!
Sub cPy()
Dim ws As Worksheet
For Each ws In ThisWorkbook.Worksheets
On Error Resume Next 'In case "Day.xls" is missing sheet
If Left(ws.Name, 1) = 3 Then _
ws.Cells.Copy Workbooks("Day.xls").Sheets(ws.Name).[a1]
Next ws
End Sub
Best reg. daniel
"from the land of the ice and snow"