VBA saving one folder to short

SCCTAS

New Member
Joined
Jul 26, 2018
Messages
2
Hi All,

I am trying to create a userform that saves itself with a file name based on the contents of a text box and to a location the user decides. I got the first part working okay, but when I go and save the file it saves one folder short of where I choose. For example if I want to save it to H:\Me\Expenses\Toronto Trip\ the file saves to H:\Me\Expenses\. Any help is appreciated!

Code:
Private Sub SaveCommandButton_Click()


If EmployeeTextBox.Value = "" Then
SaveCommandButton.Cancel = True
MsgBox "Please enter the employee's name", vbOKOnly
Exit Sub
End If


     With Application.FileDialog(msoFileDialogFolderPicker)
        If EmployeeTextBox.Text = "" Then Cancel = True Else
        .AllowMultiSelect = False
        .Title = "Pick a folder"
        .Show
        If .SelectedItems.Count = 0 Then MsgBox "Operation Cancelled by the user", vbExclamation + vbOKOnly, "List Files": Exit Sub
        strTopFolderName = .SelectedItems(1)
     End With
    
     ActiveWorkbook.SaveAs (EmployeeTextBox.Text)
    
End Sub
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
Code:
ActiveWorkbook.SaveAs strTopFolderName  & "\" & EmployeeTextBox.Text
 
Upvote 0

Forum statistics

Threads
1,215,167
Messages
6,123,401
Members
449,098
Latest member
ArturS75

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top