Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello,
I've a worksheet with about ten sheets. On each sheet I want to create a sheet specific information box, which pops up after clicking a button. The information contains several lines of text. I prefer to have the information that is shown in these boxes in a single place (maybe another worksheet?) Anyone ideas of how to do this? Thanks, Bernd |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Place this code into a standard code module. Add command buttons from the
Forms Toolbar and assign them to this macro. Public Sub SheetMessage() Select Case ActiveSheet.Name Case "Sheet2" MsgBox Sheets("Sheet1").Range("A1").Value Case "Sheet3" MsgBox Sheets("Sheet1").Range("A2").Value End Select End Sub I placed buttons on Sheet 2 and Sheet 3 and placed messages in Cells A1 and A2 of sheet 1. -- HTH... Jim Thomlinson "bernd" wrote: Hello, I've a worksheet with about ten sheets. On each sheet I want to create a sheet specific information box, which pops up after clicking a button. The information contains several lines of text. I prefer to have the information that is shown in these boxes in a single place (maybe another worksheet?) Anyone ideas of how to do this? Thanks, Bernd |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Pivot table cutting information of a part of the information | Excel Discussion (Misc queries) | |||
Help!! using sheet 1 information to change information on sheet 2 | Excel Worksheet Functions | |||
Information box | Excel Programming | |||
Name Box Information | Excel Discussion (Misc queries) | |||
Information from one cell pulls information from another cell | Excel Programming |