Hi
I know this had been asked, I want an event procedure to run only when a specific cell is change, such as "A3". I searched the board and modified some code that I found. I have been using the following code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com
ffice
ffice" /><o
></o
>
Dim Myrng As Range<o
></o
>
set Myrng = Target.parent.Range("b3")<o
></o
>
Range("b10").Value = "Go"<o
></o
>
End Sub<o
></o
>
i expecpted the procedure to run only when the value is "A3" is changed. The procedure runs when any cell is entered. When I delete the value in "B10" it runs again.
What did I miss.
Thanks
Steve
I know this had been asked, I want an event procedure to run only when a specific cell is change, such as "A3". I searched the board and modified some code that I found. I have been using the following code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com




Dim Myrng As Range<o


set Myrng = Target.parent.Range("b3")<o


Range("b10").Value = "Go"<o


End Sub<o


i expecpted the procedure to run only when the value is "A3" is changed. The procedure runs when any cell is entered. When I delete the value in "B10" it runs again.
What did I miss.
Thanks
Steve