Answers for "vba sub assigned to cell"

0

vba sub assigned to cell

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
 
If Target.Address = "$A$1" Then Call YourMacroNameHere  'amend the address to the be cell you want, and YourmAcroNameHere to be the macro you want to activate
End Sub
Posted by: Guest on March-14-2021

Code answers related to "vba sub assigned to cell"

Browse Popular Code Answers by Language