No. But it is always the same sheets that won't be copied (that should help a lot.)

I've got this code below that selects the sheets I need, with your help. How can I now just show the excel move dialog and let the user move the selected sheets?

Dim ws As Worksheet

For Each ws In Sheets

    If ws.Visible And ws.Name <> "Instructions" And ws.Name <> "Chart Data" And ws.Name <> "Project-Chart" Then ws.Select (False)
Next

'Copy selected sheets to.... (user picks between the open workbooks, just like a normal excel sheet 'move.)