Re: Specific cell
- From: "chris" <chris@xxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Wed, 24 Aug 2005 05:04:01 -0700
Bob,
Thanks for you help it works.
Best regards,
Chris
"Bob Phillips" wrote:
> Private Sub Worksheet_Change(ByVal Target As Range)
>
> On Error GoTo ws_exit:
> Application.EnableEvents = False
> If Target.Address = "$A$1" Then
> If Target.Value < 10 Then
> MsgBox "A1 changed"
> End If
> End If
>
> ws_exit:
> Application.EnableEvents = True
> 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
>
> Bob Phillips
>
> "chris" <chris@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
> news:FC52B1EA-FA44-4951-8000-9EFB5E7B2E5D@xxxxxxxxxxxxxxxx
> > Hello,
> >
> > I am currently building an Excel sheet that need to show a message if a
> user
> > changes the value of a specific cell.
> > For example the message needs to appear if the value of the cell A1 is
> below
> > ten, but I only want to show the message when the user changes the value.
> So
> > if the user changes cell B1 and the value of A1 is below ten I don't want
> the
> > message to appear.
> >
> > Can anybody help me out?
> >
> > Best regards,
> >
> > Chris
> >
>
>
>
.
- References:
- Specific cell
- From: chris
- Re: Specific cell
- From: Bob Phillips
- Specific cell
- Prev by Date: check value with array, Application.Match
- Next by Date: Re: Alignment and format in listbox columns
- Previous by thread: Re: Specific cell
- Next by thread: Re: Specific cell
- Index(es):
Relevant Pages
|