Hi Everyone,

Just need some help with simplifying this expression
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address(0, 0) <> "H12" Then GoTo 2:
2:
If Target.Address(0, 0) <> "H15" Then Exit Sub
how do i combine them into 1 line instead of using the GoTo function

Regards