Hello,
Beginner at VBA here. Was wondering if someone could simply explain to me what the differnece is between:
If ActiveCell = " " Then ActiveCell = 0
Else ActiveCell.Offset(1,0).Select
V.S.
If ActiveCell = '' Or ActiveCell = " "
Then ActiveCell = 0
Else ActiveCell.Offset(1,0).Select
Thanks you!
Beginner at VBA here. Was wondering if someone could simply explain to me what the differnece is between:
If ActiveCell = " " Then ActiveCell = 0
Else ActiveCell.Offset(1,0).Select
V.S.
If ActiveCell = '' Or ActiveCell = " "
Then ActiveCell = 0
Else ActiveCell.Offset(1,0).Select
Thanks you!