Dim
strPath
As
String
With
Application.FileDialog(msoFileDialogFolderPicker)
.AllowMultiSelect =
False
.InitialFileName = "G:\PG-D22\_Mitarbeiter\Kettner\"
.Title =
"Ordner auswählen"
If
.Show
Then
strPath = .SelectedItems(1)
End
With
strPath = IIf(Right(strPath, 1) =
"\", strPath, strPath & "
\")
ActiveWorkbook.SaveAs Filename:=strPath &
"Nr. "
& 2 &
"_"
& Artikel &
"_"
&
Date
&
".xls"
, _
FileFormat:=xlNormal, Password:=
""
, WriteResPassword:=
""
, _
ReadOnlyRecommended:=
False
, CreateBackup:=
False