Hi
I can get this to work with 2 named ranges but as I add the others it stops working.
Thanks for the help
I can get this to work with 2 named ranges but as I add the others it stops working.
Code:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
Call Create_Shape_CLOSE_KPI_DEFINITION
If Not Intersect(Target, Range("Employee_Performance_Plans")) Is Nothing Then
Call Show_EmployeePerformancePlans
End If
If Intersect(Target, Range("Employee_Engagement")) Is Nothing Then Exit Sub
Call Show_ENGAGEMENT
Else
If Intersect(Target, Range("Performance_Reviews_Completion")) Is Nothing Then Exit Sub
Call Show_PerformanceReviewsCompletion
Else
If Intersect(Target, Range("Employee_Turnover")) Is Nothing Then Exit Sub
Call Show_EmployeeTurnover
Else
If Intersect(Target, Range("Absenteeism_")) Is Nothing Then Exit Sub
Call Show_Absenteeism
End If
End Sub
Thanks for the help