I seem to be confused with regard to ByRef and ByVal.
Here, regardless of ByRef or ByVal, the result in the immediate window is 100. I though ByVal DOESN'T change things.
Option Explicit
Dim pabc As Long
Sub Test()
abc = 10
Debug.Print pabc
End Sub
Property Let...