Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Excel macro activation.

Kate,

you could try using the worksheet change event to trigger
the macro. Something like this should work:

Private Sub Worksheet_Change(ByVal Target As Range)

If Target.Address = "$A$1" and Target.value = "B" Then
Application.EnableEvents = False
Call KatesMacro()
Application.EnableEvents = True
End If

End Sub

Pete

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
List activation on Excel bfbankpatrick Excel Worksheet Functions 1 February 4th 09 05:44 PM
ctrl-click hyperlink activation in excel MPH55a Excel Discussion (Misc queries) 1 September 23rd 05 07:24 PM
"combination drop-down edit " form activation in Excel Trev Excel Discussion (Misc queries) 1 March 4th 05 03:26 AM
Excel macro activation. Dick Kusleika Excel Programming 0 July 29th 03 04:47 PM
Excel macro activation. Dave Ramage[_2_] Excel Programming 0 July 29th 03 04:47 PM


All times are GMT +1. The time now is 07:29 PM.

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"