Hi,
I have an issue where I want to be able to save an excel file in to a specific folder with a macro.
This is what I currently have.
This macro works fine.![]()
Public Sub SaveFile() FName = Sheets("Sign Off Form").Range("C6").Text ActiveWorkbook.SaveAs Filename:="J:\Projects\SMC\Sign Off Process\" & FName End Sub
But what I also need is to be able to save the file into another sub folder which only gets created when the macro runs, this new folder is also named based on cell C6. This sub folder name needs to be unique and the same as the file name.
So really what I need the file path to look like is
Any ideas on how I can achieve this?![]()
J:\Projects\SMC\Sign Off Process\"C6"\"C6.xlm"
Bookmarks