Hi,
I have this code:
so basically in this code, I am trying to create a report in Excel file. The error handler is supposed to handle error when a dialogbox came up asking the location the Excel file will be saved, and if user clicks Cancel in the dialog box, it wont show anything so user will not be confused. This is what user will get if I dont use error handler
can someone tell me what is wrong with my error handler?
*rst is a DAO.Recordset
I have this code:
Code:
On Error GoTo errHandler
---
exporting to Excel
---
Exit_Sub:
Set rst = Nothing
Set objSheet = Nothing
Set objBook = Nothing
Set objExcel = Nothing
Exit Function
errHandler:
Resume Exit_Sub
end function
so basically in this code, I am trying to create a report in Excel file. The error handler is supposed to handle error when a dialogbox came up asking the location the Excel file will be saved, and if user clicks Cancel in the dialog box, it wont show anything so user will not be confused. This is what user will get if I dont use error handler

can someone tell me what is wrong with my error handler?
*rst is a DAO.Recordset