I’m still (or should I say again) working on my Amortization worksheet. I have one other problem. I’m hoping if I can resolve this it will point me in the right direction but we’ll see.
Simply as a test, I have the following code in my Private Sub Worksheet_SelectionChange(ByVal Target As Range) routine.
However, I want the active cell to only be in the Range “M32:M400”. Is this possible and if so, any suggestions would be appreciated.
I’m sure I will be back with more questions but for now this should do.
Thanks,
Steve K.
Simply as a test, I have the following code in my Private Sub Worksheet_SelectionChange(ByVal Target As Range) routine.
VBA Code:
If ActiveCell.Offset(0, 0) <= 0 Then
MsgBox "Empty"
Else
MsgBox "Populated"
End If
However, I want the active cell to only be in the Range “M32:M400”. Is this possible and if so, any suggestions would be appreciated.
I’m sure I will be back with more questions but for now this should do.
Thanks,
Steve K.