Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default How can I get a macro to execute in excel based on the value of a.

I want to get an excel macro to run based on the value of a cell. Is this
possible?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,272
Default How can I get a macro to execute in excel based on the value of a.

If you use event code

Private Sub Worksheet_Change(ByVal Target As Range)

On Error GoTo ws_exit:
Application.EnableEvents = False
If Target.Address = "$H$10" Then
If Target.Value = "my value" Then
myMacro
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

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


"Ian P" <Ian wrote in message
...
I want to get an excel macro to run based on the value of a cell. Is this
possible?



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 39
Default How can I get a macro to execute in excel based on the value of a.

Not quite sure what you mean but as a guess

If you want a different macro to run depending on what a cell contains then...
'In the SHEETS code module...
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
If Target.Row = 1 And Target.Column = 1 Then
Select Case Target.Value
Case 1
Call Macro1()
Case 3
Call Macro2()
Case 3
Call Macro3()
Else
'Do nothing
End Select
End If
End Sub



If you need a certain macro to run only when a cell = a certain value then...
'In the SHEETS code module...
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
If Target.Row = 1 And Target.Column = 1 Then
Select Case Target.Value
Case 1, 2, 3
TheRealMacro Target 'Call the real macro
End Select
End If
End Sub

Private Sub TheRealMacro(Target As Excel.Range)
MsgBox "Macro running: You typed " & Target.Value
End Sub

Regards - Steve.

"Ian P" <Ian wrote in message ...
I want to get an excel macro to run based on the value of a cell. Is this
possible?



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I execute a macro based on the value of a cell in Excel? brettopp Excel Discussion (Misc queries) 12 June 17th 06 01:27 AM
Auto execute macro when open excel bris Excel Programming 2 September 21st 04 09:52 AM
Excel 2002 Macro to Execute SQL Statement David Weilmuenster[_2_] Excel Programming 0 July 15th 04 01:10 AM
Execute Excel Macro using Java chrischern Excel Programming 0 June 29th 04 04:09 AM
access 97 to excel 97: execute macro automation Tom Ogilvy Excel Programming 0 July 13th 03 05:16 PM


All times are GMT +1. The time now is 08:04 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"