I want to run the routine CommCalc when the contents of the range "Exec" changes. "Exec" has a drop down-list of names which I use to do various lookups. This code does not work?
Thanks in advance![]()
Private Sub Worksheet_SelectionChange(ByVal Target As Range) Application.ScreenUpdating = False Dim MRange As Range Set MRange = Range("Exec") Call CommCalc End Sub
Bookmarks