Definição? Você quer dizer argumentos / sintaxe? Por que não incluí-lo em sua UDF (função definida pelo usuário) para mostrar uma dica de ferramenta?
Professional Excel Development by Stephen Bullen:
Function IFERROR(ByRef ToEvaluate As Variant, ByRef Default As Variant) As Variant
If IsError(ToEvaluate) Then
IFERROR = Default
Else
IFERROR = ToEvaluate
End If
End Function
Sub RegisterUDF()
Dim s As String
s = "Provides a shortcut replacement for the common worksheet construct" & vbLf _
& "IF(ISERROR(<expression>, <default>, <expression>)"
Application.MacroOptions macro:="IFERROR", Description:=s, Category:=9
End Sub
Sub UnregisterUDF()
Application.MacroOptions Macro:="IFERROR", Description:=Empty, Category:=Empty
End Sub
Você também pode pressionar ctrl shift A depois de iniciar seu =formula(
para ativar a sintaxe.