Hi all,
I want to run multiple event macros in the same sheet but being a newbie, I can't figure out how to do it. Below are my two events.
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Range("A1").Value = ActiveCell.Address
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Row = 3 And Target.Column = 6 Then
Application.EnableEvents = False
Sheets("List").Range("F4").Value = [=IFERROR(VLOOKUP($F$3,Data!$A$1:$C$7,2,0),"")]
Sheets("List").Range("F5").Value = [=IFERROR(VLOOKUP($F$3,Data!$A$1:$C$7,3,0),"")]
End If
Application.EnableEvents = True
End Sub
Thank you for your time and help.
Bookmarks