VBA code to Save file to specific Folder based on Cell input

Kingkoopa

Board Regular
Joined
Aug 7, 2014
Messages
94
Hi Guys,

I am using Excel 2016. I have the following input fields :

Sales PersonJack
CustomerApple Inc
ProjectGlass

<colgroup><col><col></colgroup><tbody>
</tbody>

I am trying to setup a macro that will save my excel file to a specific folder name base on the sales person name. So if the sale's person name is Jack it would go to Jack folder. If its John it will save to John folder etc.

I did abit of googling and found the code to save to a folder but wasn't able to find one that had a dynamic save location :

Sub TestSave()

Dim FName As String
Dim Fname2 As String
Dim Fname3 As String
Dim FPath As String


FPath = "C:\Desktop\Jack/"
FName = Range("B1")
Fname2 = Range("B2")
Fname3 = Range("B3")
ActiveWorkbook.SaveAs Filename:=FPath & FName & " " & Fname2 & Fname3 & ".xls", FileFormat:=xlNormal

End Sub


Any idea's how I can make it dynamic such that it would save to the specific folder base on the cell input of Cell B1 :(?


Thank you
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
You told us the file folder you want it saved to, but not what you want to name the file.
Where does the file name come from?
 
Upvote 0
Hi Joe,

The file name comes from the cell B1 , B2 & B3.

Sales PersonJack
CustomerApple Inc
ProjectGlass

<tbody>
</tbody>
So the name of the file would be Jack Apple Inc Glass. If B1 is Jack it would save to Jack folder, If its John it would save to John folder etc. (Can't figure out this portion :( ).

Thank you

 
Last edited:
Upvote 0
Try:
Code:
[COLOR=#333333]Sub TestSave()[/COLOR]

[COLOR=#333333]Dim FName As String[/COLOR]
[COLOR=#333333]Dim Fname2 As String[/COLOR]
[COLOR=#333333]Dim Fname3 As String[/COLOR]
[COLOR=#333333]Dim FPath As String[/COLOR]

[COLOR=#333333]FName = Range("B1")[/COLOR]
[COLOR=#333333]Fname2 = Range("B2")[/COLOR]
[COLOR=#333333]Fname3 = Range("B3")[/COLOR]
[COLOR=#ff0000]FPath = "C:\Desktop\" & Fname & "\"[/COLOR][COLOR=#333333]
[/COLOR][COLOR=#333333]
ActiveWorkbook.SaveAs Filename:=FPath[/COLOR][COLOR=#ff0000] [/COLOR][COLOR=#333333]& Fname & " " & Fname2 & " " & Fname3 & ".xls", FileFormat:=xlNormal[/COLOR]

[COLOR=#333333]End Sub[/COLOR]
Note the changes to the FPath calculation and the placement of it (needs to be AFTER Fname is set).
 
Upvote 0

Forum statistics

Threads
1,214,920
Messages
6,122,267
Members
449,075
Latest member
staticfluids

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