I’m wishing to create an internally generated .csv file – that’s the easy part.
My problem relates to asking the user where to save it.
I’d written
With Application.FileDialog(msoFileDialogFilePicker)
.InitialFileName = Replace(ActiveWorkbook.FullName, “.xls”, “.csv”)
.Filters.Add “Comma Separated FIle”, “*.csv”, 1
.Show
Open .SelectedItems(1) For Output As #1
End With
as my piece of code – but, the filepicker does not let me create a new filename on its selection.
How do I get the ability to have user pick the new output file?