As others IsNothinghave pointed out, it was never a VBA function and was probably written as syntactic sugar for Is Nothing.
VB IsNothing, . , VBA, VB, .
VBA IsNothing Tek-Tips, , - IsNothing as-is... :
'**********************************************************
'* Function: Returns true if argument evaluates to nothing
'* 1. IsNothing(Nothing) -> True
'* 2. IsNothing(NonObjectVariableOrLiteral) -> False
'* 3. IsNothing(ObjectVariable) -> True if instantiated,
'* otherwise False
'**********************************************************
Public Function IsNothing(pvarToTest As Variant) As Boolean
On Error Resume Next
IsNothing = (pvarToTest Is Nothing)
Err.Clear
On Error GoTo 0
End Function 'IsNothing
, , , , @HansUp, , , , , , .