Hello helpful lot!,
So I have an excel sheet heavily 'macroed' and coded but need to insert a message box for when a particular worksheet is opened. there are two issues/questions;
1) How do I format the message box so it is over 3/4 lines and not one long text.
2) Within the message box I want to insert a table of information which is located on a hidden sheet (labelled SYS_Fee)
so far I have;
Private Sub Workbook_Open()
Dim msg As Long
msg = MsgBox("message", vbOKOnly, "Fee Disclaimer")
End Sub
What i would like is;
Private Sub Workbook_Open()
Dim msg As Long
msg = MsgBox("message blah blah blah:
table of information", vbOKOnly, "Fee Disclaimer")
End Sub
Thank you soooo much for your help in advance!!!!!!!!!!!!!!!
So I have an excel sheet heavily 'macroed' and coded but need to insert a message box for when a particular worksheet is opened. there are two issues/questions;
1) How do I format the message box so it is over 3/4 lines and not one long text.
2) Within the message box I want to insert a table of information which is located on a hidden sheet (labelled SYS_Fee)
so far I have;
Private Sub Workbook_Open()
Dim msg As Long
msg = MsgBox("message", vbOKOnly, "Fee Disclaimer")
End Sub
What i would like is;
Private Sub Workbook_Open()
Dim msg As Long
msg = MsgBox("message blah blah blah:
table of information", vbOKOnly, "Fee Disclaimer")
End Sub
Thank you soooo much for your help in advance!!!!!!!!!!!!!!!