If a function accepts a variant, how can you tell on the function side if the variant is a Range?
Public Function IsRange(Arg As Variant) As Boolean
IsRange = (VBA.TypeName(Arg) = "Range")
End Function
Also, is there a way to compile user-defined functions and put them in a global library?