I am new in excel VBA programming. I have the code below, and what I am hoping to achieve is that if a change in made in any of the cells within that range "E19:E23", Some_Function will run. It runs if it is assigned a single cell to the Range(). But how can i make it work so that the function/s can run if there is a change in any of the cells in any range(i.e. "E19:E23")? I appreciate any help.
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = Range("E19:E23").Address Then 'When Amount of loan is entered
Call Some_Function
End If
End Sub
Thanks