D
Dave Peterson
Excel has a collection of sheets--it's all the sheets in the workbook. But
there is no collection of ranges.
Maybe you want something like:
Public Property Get Range(myAddr as string) As Range
Set Range = pTT.Range(myaddr)
End Property
So you can pass it the address of the range you want.
there is no collection of ranges.
Maybe you want something like:
Public Property Get Range(myAddr as string) As Range
Set Range = pTT.Range(myaddr)
End Property
So you can pass it the address of the range you want.