• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

how to save master workbook with different name

Margil can you specify more about your need?

SAVE AS (short key F12) command is not fulfilling your requirement?

Regards,
 
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
 
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
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...
 
Back
Top