Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How can i create a message box to appear in my files in MS word or excel
2007, for example "Good Morning" when my colleagues open a file |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Use the Workbook Open event to display a message for a specific excel
workbook; Set the security level to low/medium in (Tools|Macro|Security). From workbook press Alt+F11 to launch VBE (Visual Basic Editor). From the left treeview search for the workbook name and click on + to expand it. Within that you should see the following VBAProject(Your_Filename) Microsoft Excel Objects Sheet1(Sheet1) Sheet2(Sheet2) Sheet3(Sheet3) This Workbook Double click 'This WorkBook' and paste the below code to the right code pane. Private Sub Workbook_Open() MsgBox "Message to be displayed" End Sub -- Jacob "David" wrote: How can i create a message box to appear in my files in MS word or excel 2007, for example "Good Morning" when my colleagues open a file |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Unexpected message when first opening this 2007 Excel file | Excel Discussion (Misc queries) | |||
Error message on opening Excel 2007 | Excel Discussion (Misc queries) | |||
How can I display a message when opening an Excel File? | Excel Discussion (Misc queries) | |||
"Unable to read file" error message when opening a Excel file that contains a PivotTable report. | Charts and Charting in Excel | |||
Display a message when opening Excel file | Setting up and Configuration of Excel |