bamaisgreat
Well-known Member
- Joined
- Jan 23, 2012
- Messages
- 834
- Office Version
- 365
- Platform
- Windows
Is there away to execute a macro after selecting a few certain cells???
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
If Target.Address = "$G$1:$J$1" Then
Call FINALIZED_BY_QC_job
End If
End Sub
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
If Target.Address = "$A$4,$J$10" Then
Call SHOW_LIST
End If
End Sub
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
If Target.Address = "$G$1:$J$1" Then
Call FINALIZED_BY_QC_job
ElseIf Target.Address = "$A$4,$J$10" Then
Call SHOW_LIST
End If
End Sub