+ Reply to Thread
Results 1 to 3 of 3

MSg Box

Hybrid View

  1. #1
    Registered User
    Join Date
    11-17-2011
    Location
    KL, Malaysia
    MS-Off Ver
    Excel 2010
    Posts
    9

    MSg Box

    Hello,

    I have this stupid question. Sorry bout it. I tried finding the forum but can't seems to locate (maybe wrong search).

    Basically i wanted to list the items in the msg box as 1. , 2., 3. in a different line. How do i do write it in the VBA?

    Sub Auto_Open()
    '
    ' Auto_Open
    '
    
    '
        Worksheets("Main").Visible = xlSheetVisible
        Sheets("Main").Select
        MsgBox "Please follow the following steps " & _
                "1. Copy from main" & _
               "2. Pastre."
    
    
    End Sub
    Any idea?

    Thanks guys for helping..

  2. #2
    Valued Forum Contributor WasWodge's Avatar
    Join Date
    08-02-2010
    Location
    Hampshire,England
    MS-Off Ver
    Office 365 and Office 2010
    Posts
    882

    Re: MSg Box

    Try changing
    MsgBox "Please follow the following steps " & _
                "1. Copy from main" & _
               "2. Pastre."
    to

    MsgBox "Please follow the following steps " & vbNewLine & "1. Copy from main" & vbNewLine & _
               "2. Pastre."
    If my solution worked (or not) please let me know. If your question is answered then please remember to mark it solved

    Computers are like air conditioners. They work fine until you start opening windows. ~Author Unknown

  3. #3
    Registered User
    Join Date
    11-17-2011
    Location
    KL, Malaysia
    MS-Off Ver
    Excel 2010
    Posts
    9

    Re: MSg Box

    Thank you. It is so simple.

+ 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