![]() |
|
#1
|
||||
|
||||
![]()
Ah, you're new to VBA, I see
![]() Take a look again at the code as you wrote it. It differs in a few ways from what I suggested, and some of the differences are important: Code:
ErrHandle: If Err.Number = 1004 Then Exit Sub MsgBox "Exiting Sub" Else Resume End If 1) The way I wrote it went like this: Code:
If Err.Number = 1004 Then <do one thing> Else <do a different thing> End if So that explains the actual error message: You said "if <something is true> then <do something>", and that was the end of the If statement—so when it later saw an End If, it didn't understand why. Let's fix that one problem: Code:
If Err.Number = 1004 Then Exit Sub MsgBox "Exiting Sub" Else Resume End If Code:
If Err.Number = 1004 Then MsgBox "Exiting Sub" Exit Sub Else Resume End If Code:
If Err.Number = 1004 Then MsgBox "Exiting Sub" Exit Sub Else Resume End If Last edited by BobBridges; 04-04-2020 at 09:29 AM. Reason: Continuing now that I have more time |
![]() |
Tags |
error handling, rename file |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
MS Word Error: This file is in use by another application or user | conky | Word | 4 | 02-26-2019 09:21 AM |
How can I get Outlook from one user to another w/o a .pst file (primary user on computer is corrupt) | Tenmakk | Outlook | 0 | 03-01-2015 12:49 PM |
![]() |
tinfanide | Excel Programming | 2 | 10-19-2014 09:46 AM |
![]() |
spencerw.smith | Word VBA | 2 | 08-12-2014 07:56 AM |
Word does not ask do i want to overwrite a file on saving a file | sam2149 | Word | 2 | 03-24-2014 04:18 AM |