+ Reply to Thread
Results 1 to 2 of 2

Thread: Popup message opening excel file !

  1. #1
    Registered User
    Join Date
    08-20-2010
    Location
    uk
    MS-Off Ver
    Excel 2003
    Posts
    8

    Popup message opening excel file !

    I am familiar with the basic popup message when you open a excel file, however, if I want the message to only be displayed once when opened by a new user, how would I go about that ?

    Thanks

    JJ

  2. #2
    Forum Guru pike's Avatar
    Join Date
    12-11-2005
    Location
    Alstonville, Australia
    MS-Off Ver
    2010
    Posts
    5,150

    Re: Popup message opening excel file !

    one way

    Option Explicit
    
    Private Sub Workbook_Open()
    If Worksheet("Sheets1").Range("Z1000").Value = "" Then
    MsgBox "Hello"
    Worksheet("Sheets1").Range("Z1000").Value = "."
    ThisWorkbook.Save = True
    End If
    End Sub
    regards pike

    If the solution helped please donate
    here to the RSPCA

    Sites worth visiting;

    J&R Solutions - royUK

    AJP Excel Information - Andy Pope

    Spreadsheet Toolbox

    VBA for smarties - snb

+ 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.2.0