How Excel VBA opens, closes multiple workbooks

Source: Internet
Author: User

Write to open and close multiple workbooks with Excel VBA, and the appropriate code is as follows:

1, open the specified workbook

Dim wb As Workbook

Set wb = "File path and filename"

Workbooks.Open filename:= WB

2. Close all workbooks and save

Workbooks.close

3, open a number of work-thin program code:

Sub Openworkbooks ()

On Error Resume Next

Dim Selectfiles as Variant

' Show open File dialog box

Selectfiles = Application.getopenfilename ("Excel file (*.xl*)," & "*.xl*",, "open", True)

' Not selected

If TypeName (selectfiles) = "Boolean" Then

Exit Sub

End If

' Open the selected workbook

For i = 1 to UBound (selectfiles)

Workbooks.Open Selectfiles (i)

Next I

End Sub

Classification:
  • Excel Tutorials

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.