Results 1 to 9 of 9

Thread: New Workbook for each worksheet

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #2
    After you add the new worksheet, pop this in there:

    ' assuming you want it to save in the same folder
     fldr = ThisWorkbook.Path
    ThisWorkbook.Sheets("UniqueList").Select
             ThisWorkbook.Sheets("UniqueList").Copy
    ActiveWorkbook.SaveAs (fldr & "\UniqueList")
             Workbooks("UniqueList.xlsx").Close
    Last edited by Aussiebear; 03-09-2025 at 09:04 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •