Hi, trying to trigger events is cells in multiple traget addresses are selected.

I have merged 3 cells together eg b10:b13 are merged but selecting cell is cell b10

I have 9 of these from B10 to B32. I'm trying to use below code so if I am selecting any of the 9 cells my other events trigger. My below does not trigger not sure why..

[vba]If Target.Address = ("$B$8:$B$32") Then
If Range("ac2") = "I'm here" Then
MsgBox "Unprotecting for Budgetary adjustments
End If
End If[/vba]

This is in the worksheet selection change.