I have a named range 'DailyDB_Crew' which consists of a non contiguous range - K28:K35, R28:R35, K44:K51, R44:R51
If any of these cells are selected I would like the Worksheet_Change or similar to execute so a userform can be displayed.
I hoped that
would have worked but bugs out before starting.
Thanks
If any of these cells are selected I would like the Worksheet_Change or similar to execute so a userform can be displayed.
I hoped that
Code:
If Not Intersect(Target.Address, Range("DailyDB_Crew").Address) Then
Exit Sub
Else
'user form code'
End If
Thanks