'VBA function to retrieve the full address of a range:Function FullAddress(r As Range)
With r
FullAddress = "'" & .Parent.Name & "'!" & .Address
EndWithEndFunction'--------------------------------------------------------------------
MsgBox FullAddress 'Displays: 'My Sheet'!$A$1:$Z$99