• 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.

Separate workbook

Veeru106

Member
Hi,

I am trying to create a separate workbook of one particular sheet only from number of sheets in my workbook. with below code I am able to do it but values coming in separate sheet is in formulas , where I need paste special values. Please suggest:-


Code:
Sub Sheet_SaveAs()
  Dim wb As Workbook
  Sheets("Org").Copy
  PasteSpecialxlPasteValues
  Set wb = ActiveWorkbook
  With wb
  .SaveAs ThisWorkbook.Path & "\Comeon.xlsx"
  '.Close False
  End With
End Sub
 
Back
Top