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
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
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks