Hi again,
Yes, the l's are now 1's 
Private Sub CommandButton1_Click()
Dim DstFile As String, wb As Workbook
With ThisWorkbook.Sheets("Create Your Project").Range("U11")
If .Value = "" Then
MsgBox "Missing file name on sheet Create Your Project, cell U11", , "Missing Entry"
Exit Sub
Else
DstFile = .Value & ".xls"
End If
End With
Application.ScreenUpdating = False
Set wb = Workbooks.Add(xlWBATWorksheet)
ThisWorkbook.Activate
Sheets("S Datasheet Low").UsedRange.Copy
With wb.Sheets(1).Range("A1")
.PasteSpecial x1PasteColumnWidths
.PasteSpecial x1PasteValuesAndNumberFormats
.PasteSpecial x1PasteFormats
End With
'wb.Sheets(1).Name = "S Datasheet Low"
Application.ScreenUpdating = True
DstFile = Application.GetSaveAsFilename(InitialFileName:=DstFile, Title:="Save As")
If DstFile = "False" Then
MsgBox "Actions Canceled.", , "File Not Saved"
Else
wb.SaveAs DstFile 'Save file
wb.Close 'Close file
MsgBox DstFile, vbInformation, "File Saved"
End If
End Sub
Bookmarks