Thank you for your help. I have done a search and can't find what I am looking for.
I am looking for a quick way to take my 36 work sheets and make them all into new work books.
I know that I can copy - new work book for each one but I was hoping that there was a quicker way to do it.
Again, thank you.
Also is there a way to go the other direction?
Do you want a macro to do this?
If so try
Option Explicit Sub ShtsToWorkBooks() Dim ws As Worksheet For Each ws In ThisWorkbook.Worksheets ws.Copy ActiveWorkbook.SaveAs ThisWorkbook.Path & Application.PathSeparator & ws.Name & ".xls" ActiveWorkbook.Close Next ws End Sub
Hope that helps.
RoyUK
--------
If you are pleased with a member's answer then use the Star icon to rate it, if you are pleased enough to part with cash consider a donation to Children in Need
For Excel Tips & Solutions, free examples and tutorials why not check out my downloads
New members please read & follow the Forum Rules
Remember to mark your questions Solved and rate the answer(s)
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks