Thread: MsgBox help
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Office_Novice Office_Novice is offline
external usenet poster
 
Posts: 245
Default MsgBox help


Private Sub CommandButton1_Click()
MsgBox Range("A1").Value & " Has Been Loaded", vbInformation, "TiTLE"

End Sub



"James C." wrote:

Can someone help with a problem I am having? I have a button that I want to
click on that will tell the user what months of data are loaded. The months
are listed in individual cells on a hidden data page. My end goal is to have
the user click the button and then a message box appear that says, "The
following months of data have been loaded: Jan, Feb....etc")

Any ideas on how to do this?