I am using the following code in excel to perform a job:
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 3 And Target.Row = 2 Then
' do this
End Sub
How can I use this type of codes ie not related to Excel VBA module from
VB6?