By using expertatexcel.com you agree to our cookie policy, We and our partners operate globally and use cookies, for multiple purposes

expertatexcel.com

 


Processing Multiple Errors

If you're processing a file and want to return multiple errors instead of one do the following



sError = ""
for i = Lbound(array) to UBound(array)
    'do a process that sets error_message
    sError = sError & error_message & vbCRLF & "<p>"



next