M margil patel New Member Oct 12, 2014 #1 i want one master workbook save as different names with all sheets & formulas.
Khalid NGO Excel Ninja Oct 13, 2014 #2 Margil can you specify more about your need? SAVE AS (short key F12) command is not fulfilling your requirement? Regards,
Margil can you specify more about your need? SAVE AS (short key F12) command is not fulfilling your requirement? Regards,
M margil patel New Member Oct 14, 2014 #3 Thanks, But have lots of workbook name so i want use vba code for save workbook.
Smallman Excel Ninja Oct 14, 2014 #4 Margil Please post a sample of your workbook with more detail around what you are looking to change or save. This will supply some context to assist you. Take care Smallman
Margil Please post a sample of your workbook with more detail around what you are looking to change or save. This will supply some context to assist you. Take care Smallman
M margil patel New Member Oct 14, 2014 #5 I have this workbook and i want to copy this workbook and save with different name. using VBA Code Attachments 01AImportWebdata.xlsm 46.8 KB · Views: 3
N Nebu Excel Ninja Oct 14, 2014 #6 ChDir "C:\Your File path here" ActiveWorkbook.SaveAs Filename:="C:\Your file path here\your name.xlsm", _ FileFormat:=xlOpenXMLWorkbookMacroEnabled, CreateBackup:=False use this code, this is just a simple macro recording for save as...
ChDir "C:\Your File path here" ActiveWorkbook.SaveAs Filename:="C:\Your file path here\your name.xlsm", _ FileFormat:=xlOpenXMLWorkbookMacroEnabled, CreateBackup:=False use this code, this is just a simple macro recording for save as...