Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8515339
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T05:07:14+00:00 2026-06-11T05:07:14+00:00

I develop Excel 2007 add-in and use Microsoft.Office.Interop.Excel.Application.ActiveSheet. How can I save it in

  • 0

I develop “Excel 2007 add-in” and use “Microsoft.Office.Interop.Excel.Application.ActiveSheet”. How can I save it in separate file?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T05:07:15+00:00Added an answer on June 11, 2026 at 5:07 am

    I found post explaining how to save active sheet in VB.NET:

    Sub test()
      ActiveSheet.Copy
      ActiveWorkbook.SaveAs Filename:="C:\MyFolder\MySubFolder\Test.xls"
      ActiveWorkbook.Close
    End Sub
    

    But you can try this logic in C#, switching active sheets and saving each separately

    This should save them in seperate workbooks…

    Sub test()
    
    Dim iNoSheets As Integer
    Dim i As Integer
    
    iNoSheets = Worksheets.Count
    
    For i = 1 To iNoSheets
    Worksheets(i).Activate
    ActiveSheet.Copy
    ActiveWorkbook.SaveAs Filename:="C:\Test" & i & ".xls"
    ActiveWorkbook.Close
    Next
    
    End Sub 
    

    And now in C#:

    public void SaveSheets()
    {
    for(int i = 0; i < Worksheets.Count; i++)
    {
    Worksheets[i].Activate();
    ActiveSheet.Copy();
    ActiveWorkbook.SaveAs(string.Format(@"C:\sheet{0}.xlsx",i));
    ActiveWorkbook.Close();
    }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I develop an application that use the Microsoft.Interop.Excel version 11 in .Net 3.5 How
I use VS2008 to develop a excel 2007 add-in, within add-in I want to
I want to develop and automate Office software like 'Microsoft Excel 2007' And 'Microsoft
I'm using VS 2010 to develop an Excel 2007 COM Add-In. Because it's a
I want to develop a application like MS-Office specially like ms-word and excel. I
I develop an Excel 2007 add-In using VS 2010 and existing WPF user controls.
I'm trying to develop an AddIn for Excel 2007, and have a solution full
I am trying to develop a Microsoft excel plugin to send excel sheet data
I need to develop a Add on for Excel (2003 and greater), it must
I develop application for APNS. My code is work fine with one device and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.