View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Brian Herbert Withun Brian Herbert Withun is offline
external usenet poster
 
Posts: 14
Default 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
....