@SamT - ???


Capture.JPG


Option Explicit

Public Function CountT(iRow As Integer) As Variant
    Dim rCaller As Range
    
    CountT = iRow
    
    Set rCaller = Application.Caller
    
    MsgBox rCaller.Address & " -- " & rCaller.Parent.Name

End Function