View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Piwo Piwo is offline
external usenet poster
 
Posts: 9
Default Running a macro based on a cells value

Thanks Bob. I will give it a try.

"Bob Phillips" wrote:

As long as you have Excel 2000 up

Private Sub Worksheet_Change(ByVal Target As Range)

On Error GoTo ws_exit:
Application.EnableEvents = False
If Target.Address = "$H$10" Then
'run your macro
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

RP
(remove nothere from the email address if mailing direct)


"Piwo" wrote in message
...
I have a macro that I want to run when a cells value changes due to a
selection from a list. How can I make this happen? Thanks in advance.