VBA - IF ERROR when opening a file, THEN ...

Beachson

Active Member
Joined
Oct 28, 2009
Messages
468
Can someone help put together the proper code for the following?

IF an error occurs upon the following ...

Code:
Windows("CORPORPF.xlsx").Activate

Then open file "CORPORPF.xlsx" (Full file path is V:VAI:CORPORPF.xlsx")

If no error occurs then ...

Code:
Windows("CORPORPF.xlsx").Activate

Thank you for any help
 
Last edited:

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
How about
Code:
On Error Resume Next
    If Workbooks("CORPORPF.xlsx") Is Nothing Then
        Workbooks.Open "V:Excel:CORPORPF.xlsx"
    Else
        Workbooks("CORPORPF.xlsx").Activate
    End If
On Error GoTo 0
 
Upvote 0
Perhaps.
Code:
Dim wb As Workbook

    On Error Resume Next
    Set wb = Workbooks("CORPORPF.xlsx")
    On Error Goto 0

    If wb Is Nothing Then
        Set wb = Workbooks.Open("V:VAI:CORPORPF.xlsx")
    End If

    wb.Activate
 
Upvote 0
Glad we could help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,226,116
Messages
6,189,055
Members
453,523
Latest member
Don Quixote

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top