+ Reply to Thread
Results 1 to 2 of 2

Open template automatically

Hybrid View

  1. #1
    Registered User
    Join Date
    06-25-2005
    Posts
    1

    Question Open template automatically

    I'm doing a project on designin a template to help staff prepare the cash budget with excel. In order to make it easy to use, how can i have EXCEL open the template automatically when Excel is activated?

  2. #2
    Forum Contributor
    Join Date
    11-09-2004
    Posts
    451
    You have to use macro for this, you can paste this code in vba editor , "this workbook".

    go to tools->macro->visual basic editor-> double click "this workbook" on the left , paste this code, save the excel , close it and open it. As soon as it is opened template will be opened, you have to change the path defined in the code.


    Private Sub Workbook_Open()
    Workbooks.Open Filename:="C:\My Documents\template.xls" 'define the template path
    End Sub

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1