Can you use multiple "On Error Go To" within the same Sub? What I would like to do is check for an export error on a couple different exports that occur in the same event.
i.e.
If Export1 fails due to file already being there I want to rename my export file "FileExport1_1" instead of "FileExport1"
If Export2 fails due to file already being there I wan to do the same thing, but it would be a different file name ("FileExport2_1" as opposed to "FileExport2").
There may be a different way to accomplish what I want to do, and if so I am all ears.