This is a basic question, but I haven't found any solutions after a Google search.
Here's what I'm trying to do:
I can't get the MsgBox to launch properly: it's highlighted in red. I think this is a syntax issue.
Sub DataProcessingExperiment7
On Error GoTo ErrorHandler
...
ErrorHandler
MsgBox("Error detected" & vbNewLine & "Error" & Err.Number & ": " & Err.Description, vbCritical, "Error Handler: Error" & Err.Number, , , asVbMsgBoxResult)
If you just want to show the user a message with an ok button then use:
The only bit you need is the message bit. You can use named parameters, like this (makes it easier to know which bit is what):
If you want to give the user a Yes/No, Ok/Cancel choice, then you use MsgBox as a function and store or use the result.
For your code use: