I'm very new to using VBA. I keep receiving a run-time error when I try to get the address of the cell.
Excel Formula:
Sub Supervisor()
SuperRange = Range("D3:D4")
For Each cell In SuperRange
If cell Like "*.*" Then
MsgBox cell.Address
Else
MsgBox "nope."
End If
Next
End Sub