Hi hamidxa
I don't have the issue you describe but it's probably something in my settings.
Start from a clean Worksheet...only Master Worksheet.
Try this...if it does not work as expected there is a brute force solution...add the line of Code as indicatedLet me know of issues.![]()
For Each rCell In Sheets("Temp").Range("B2", Sheets("Temp").Range("B" & Rows.Count).End(xlUp)) On Error Resume Next Application.SheetsInNewWorkbook = 1 'Add this line of Code Set wkBk1 = Workbooks.Add() Application.DisplayAlerts = False wkBk1.SaveAs myNewPath & rCell & ".xlsx" wkBk1.Close True Application.DisplayAlerts = True On Error GoTo 0 Next rCell
Bookmarks