Help passing Range to Class Module method
With MyObj
.PopulateByRange R1:=Selection
This did it! Thank you.
I would feel considerably less icky if I knew why that is different
from this:
.PopulateByRange (Selection)
for calls to this method:
Public Function PopulateByRange(R1 As Range) As Boolean
....
|