Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I want to have a msgbox appear when any cell in the workbook is selected.
How is this done. -- Thanks, Chad |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
Di you really mean any cell!! If you do then right click your worksheet, view code and paste this in. Private Sub Worksheet_SelectionChange(ByVal Target As Range) MsgBox "You just clicked " & Target.Address End Sub Or for when you click in a certain range Private Sub Worksheet_SelectionChange(ByVal Target As Range) If Not Intersect(Target, Range("A1:A10")) Is Nothing Then MsgBox "You just clicked " & Target.Address End If End Sub Mike "SoggyCashew" wrote: I want to have a msgbox appear when any cell in the workbook is selected. How is this done. -- Thanks, Chad |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Seems rather annoying to me but add this code to Thisworkbook module.
Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, _ ByVal Target As Range) MsgBox "annoying message" End Sub Gord Dibben MS Excel MVP On Thu, 6 Nov 2008 01:07:00 -0800, SoggyCashew wrote: I want to have a msgbox appear when any cell in the workbook is selected. How is this done. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How can I pop up a picture when a cell is clicked on Excel? | Excel Discussion (Misc queries) | |||
How can I detect that an excel cell has been clicked | Excel Discussion (Misc queries) | |||
HOW DO I GET AN X IN A CELL IN EXCEL TO COME & GO WHEN CLICKED | Excel Discussion (Misc queries) | |||
Right clicked range highlights in Excel would add the "$" to func | Excel Worksheet Functions | |||
Can I format a cell to fill red when clicked with mouse (Excel)? | Excel Worksheet Functions |