I wanted to write the error handling for vba, which after directing to the error handling will first check for a specific error and if there is no match, it will show the error message as according to Excel.
Here is my code:
On Error GoTo ErrorHandl
ErrorHandl:
If Err.Number = 13 Then
MsgBox "Do that …", vbCritical
Exit Sub
Else
??????
What could I write in the place of questions marks, so that if error number is different than 13 then, excel will show me the other error that is currently occurring?

Err.Description.