Hi guys,
I would like to ask you a question. I would like to prompt a user with
a message ( inputbox) when the click in a specific cell. How can I do
that?
Thanks in advance
Riri
Hi guys,
I would like to ask you a question. I would like to prompt a user with
a message ( inputbox) when the click in a specific cell. How can I do
that?
Thanks in advance
Riri
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Address = "$H$1" Then
MsgBox "hello"
End If
End Sub
'This is worksheet event code, which means that it needs to be
'placed in the appropriate worksheet code module, not a standard
'code module. To do this, right-click on the sheet tab, select
'the View Code option from the menu, and paste the code in.
--
HTH
RP
(remove nothere from the email address if mailing direct)
"lilika" <eleftheriak@hotmail.com> wrote in message
news:3f8bc0e1.0502220859.6144fba6@posting.google.com...
> Hi guys,
>
> I would like to ask you a question. I would like to prompt a user with
> a message ( inputbox) when the click in a specific cell. How can I do
> that?
>
> Thanks in advance
>
> Riri
Thanks a lot in works like magic
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks