Creating Message Boxes

davidzan

New Member
Joined
Feb 13, 2024
Messages
13
Office Version
  1. 2010
Platform
  1. Windows
I have several sheets within a workbook. How can I create a different "message box" on more than one sheet within my workbook. Below is the message box I created on the initial Sheet:

Private Sub Workbook_SheetActivate(ByVal Sh As Object)
On Error Resume Next
If Sh.Name = "Sheet1" Then
MsgBox "line1" & vbCrLf & "line2" & vbCrLf & "line3" & vbCrLf & "line4",vbinformation, "Created 02/09/2024
End If
End Sub
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Welcome to the Board!

Probably best to use a Case statement, structured something like this here, if you want a different message for each sheet:
VBA Code:
Private Sub Workbook_SheetActivate(ByVal Sh As Object)
On Error Resume Next

Select Case Sh.Name
    Case "Sheet1"
        MsgBox "line1" & vbCrLf & "line2" & vbCrLf & "line3" & vbCrLf & "line4", vbInformation, "Created 02/09/2024"
    Case "Sheet2"
        MsgBox ...
    Case "Sheet3"
        MsgBox ...
    ...
End Select
       
End Sub

If the messages are similar and can be programmed, we may be able to simplify it a bit. We would just need to know more details about it.
 
Upvote 0
Solution
Welcome to the Board!

Probably best to use a Case statement, structured something like this here, if you want a different message for each sheet:
VBA Code:
Private Sub Workbook_SheetActivate(ByVal Sh As Object)
On Error Resume Next

Select Case Sh.Name
    Case "Sheet1"
        MsgBox "line1" & vbCrLf & "line2" & vbCrLf & "line3" & vbCrLf & "line4", vbInformation, "Created 02/09/2024"
    Case "Sheet2"
        MsgBox ...
    Case "Sheet3"
        MsgBox ...
    ...
End Select
      
End Sub

If the messages are similar and can be programmed, we may be able to simplify it a bit. We would just need to know more details about it.
Thanks so much. I tried for a long time to accomplish this task. This worked great.
 
Upvote 0
You are welcome.
Glad I was able to help!
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,954
Members
449,095
Latest member
nmaske

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top