![]() |
insert an instruction for users when a worksheet opens
I am tryinig to create a popup or other type of information sheet for users
to read instructions on how to use a print macro I have created in a worksheet. I would like to have this appear as soon as the worksheet opens, so all users can have the information. I seem to recall there is a way to creat this funcitonality. I appreciate any assistance anyone can offer. Thanks Don |
insert an instruction for users when a worksheet opens
Look in the SHEET module for sheet activate
msgbox "do this" -- Don Guillett Microsoft MVP Excel SalesAid Software "Donald Dudar" wrote in message ... I am tryinig to create a popup or other type of information sheet for users to read instructions on how to use a print macro I have created in a worksheet. I would like to have this appear as soon as the worksheet opens, so all users can have the information. I seem to recall there is a way to creat this funcitonality. I appreciate any assistance anyone can offer. Thanks Don |
insert an instruction for users when a worksheet opens
hi
create a form and use lable controls to type your instructions. then use the workbook open event to show the form on file open. Private Sub Workbook_Open() 'goes in this workbook module Load userform1 userform1.Show 0 End Sub the 0 (zero) at the end of line userform1.show 0 displays the form as modeless meaning that the user can leave the form open but still do work on the sheet. you could put a close button on the form. Private Sub CommandButton1_Click() Unload Me End Sub or use the form close "X" at the upper left of the form. see this site on how to set up a userform. http://contextures.com/xlUserForm01.html regards FSt1 "Donald Dudar" wrote: I am tryinig to create a popup or other type of information sheet for users to read instructions on how to use a print macro I have created in a worksheet. I would like to have this appear as soon as the worksheet opens, so all users can have the information. I seem to recall there is a way to creat this funcitonality. I appreciate any assistance anyone can offer. Thanks Don |
All times are GMT +1. The time now is 12:12 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com