+ Reply to Thread
Results 1 to 6 of 6

Running macro on open of workbook?

  1. #1
    Lime
    Guest

    Running macro on open of workbook?

    Hello,
    How do I set up a macro within a workbook to run when it opens, and when the
    macro is done running a message box saying Macro Finished?

    Any help??
    Lime

  2. #2
    Forum Contributor
    Join Date
    06-01-2006
    Posts
    324
    Put this in ThisWorkbook in VBA

    Private Sub Workbook_Open()

    Call whateveryourmacroiscalled()
    MsgBox ("Macro Finished")

    End Sub
    Google is your best friend!

  3. #3
    Ron de Bruin
    Guest

    Re: Running macro on open of workbook?

    Read this page
    http://www.cpearson.com/excel/events.htm

    Try this example

    Private Sub Workbook_Open()
    Dim sh As Worksheet
    For Each sh In ThisWorkbook.Worksheets
    sh.Range("A1").Value = Format(Date, "dd-mmm-yyyy")
    Next sh
    MsgBox "All sheets have today's date in A1"
    End Sub



    --
    Regards Ron De Bruin
    http://www.rondebruin.nl



    "Lime" <Lime@discussions.microsoft.com> wrote in message news:A748D31D-C738-4209-A2DE-FAE6F77680D9@microsoft.com...
    > Hello,
    > How do I set up a macro within a workbook to run when it opens, and when the
    > macro is done running a message box saying Macro Finished?
    >
    > Any help??
    > Lime




  4. #4
    Lime
    Guest

    Re: Running macro on open of workbook?

    Here is what I have but it is not working, Am i Missing something??
    Private Sub workbook_Open()

    Sub addsheet()
    Sheets("Sheet2").Select
    Sheets.Add
    MsgBox ("Macro finished")




    "Bearacade" wrote:

    >
    > Put this in ThisWorkbook in VBA
    >
    > Private Sub Workbook_Open()
    >
    > Call whateveryourmacroiscalled()
    > MsgBox ("Macro Finished")
    >
    > End Sub
    >
    >
    > --
    > Bearacade
    >
    >
    > ------------------------------------------------------------------------
    > Bearacade's Profile: http://www.excelforum.com/member.php...o&userid=35016
    > View this thread: http://www.excelforum.com/showthread...hreadid=551938
    >
    >


  5. #5
    Lime
    Guest

    Re: Running macro on open of workbook?

    I got it... DUHA>>>>>

    "Lime" wrote:

    > Here is what I have but it is not working, Am i Missing something??
    > Private Sub workbook_Open()
    >
    > Sub addsheet()
    > Sheets("Sheet2").Select
    > Sheets.Add
    > MsgBox ("Macro finished")
    >
    >
    >
    >
    > "Bearacade" wrote:
    >
    > >
    > > Put this in ThisWorkbook in VBA
    > >
    > > Private Sub Workbook_Open()
    > >
    > > Call whateveryourmacroiscalled()
    > > MsgBox ("Macro Finished")
    > >
    > > End Sub
    > >
    > >
    > > --
    > > Bearacade
    > >
    > >
    > > ------------------------------------------------------------------------
    > > Bearacade's Profile: http://www.excelforum.com/member.php...o&userid=35016
    > > View this thread: http://www.excelforum.com/showthread...hreadid=551938
    > >
    > >


  6. #6
    Lime
    Guest

    Re: Running macro on open of workbook?

    Thank you all for you help...



    "Lime" wrote:

    > Here is what I have but it is not working, Am i Missing something??
    > Private Sub workbook_Open()
    >
    > Sub addsheet()
    > Sheets("Sheet2").Select
    > Sheets.Add
    > MsgBox ("Macro finished")
    >
    >
    >
    >
    > "Bearacade" wrote:
    >
    > >
    > > Put this in ThisWorkbook in VBA
    > >
    > > Private Sub Workbook_Open()
    > >
    > > Call whateveryourmacroiscalled()
    > > MsgBox ("Macro Finished")
    > >
    > > End Sub
    > >
    > >
    > > --
    > > Bearacade
    > >
    > >
    > > ------------------------------------------------------------------------
    > > Bearacade's Profile: http://www.excelforum.com/member.php...o&userid=35016
    > > View this thread: http://www.excelforum.com/showthread...hreadid=551938
    > >
    > >


+ 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