ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   make message box appear when cell is clicked? (https://www.excelbanter.com/excel-programming/441416-make-message-box-appear-when-cell-clicked.html)

Tacrier

make message box appear when cell is clicked?
 
Learning vba as I go, right now I am trying to get a message box to appear on
a user form I created for staff. This is what I have so far:

Sub showMessage()
MsgBox "Press Alt-Enter to insert a new line"
End Sub

What would the rest of this code be to have the message pop up when merged
cell AE8 is selected?

Thanks in advance :)

Trina

Don Guillett[_2_]

make message box appear when cell is clicked?
 
Right click sheet tabview codeinsert thisDOUBLE click in e8:f8 to fire

Private Sub Worksheet_BeforeDoubleClick _
(ByVal Target As Range, Cancel As Boolean)
If Target.Address < Range("e8:f8").Address Then Exit Sub
MsgBox "hi"

End Sub

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Tacrier" . wrote in message
...
Learning vba as I go, right now I am trying to get a message box to appear
on
a user form I created for staff. This is what I have so far:

Sub showMessage()
MsgBox "Press Alt-Enter to insert a new line"
End Sub

What would the rest of this code be to have the message pop up when merged
cell AE8 is selected?

Thanks in advance :)

Trina




All times are GMT +1. The time now is 01:17 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com