+ Reply to Thread
Results 1 to 6 of 6

Detect if file exists

  1. #1
    PeterW
    Guest

    Detect if file exists

    Hello.

    I am developing a spreadsheet that references other spreadsheets that are
    produced on a regular basis.

    I would like to check that the file exists before referencing one of its
    cells. Can anyone let me know how to check for the existance of a file?

    Many thanks.


    PeterW



  2. #2
    Bob Phillips
    Guest

    Re: Detect if file exists

    Do you mean if it is open in your instance of Excel? If so, just try
    something like

    On Error Resume Next
    Set oWB = Workbooks(filename)
    On Error Goto 0
    If Not oWB Is Nothing Then
    Msgbox "Workbook is open
    End If

    --
    HTH

    Bob Phillips

    (remove nothere from email address if mailing direct)

    "PeterW" <pwooly@btinternet.com> wrote in message
    news:F5GdnY31ur7m0rPZRVny2g@bt.com...
    > Hello.
    >
    > I am developing a spreadsheet that references other spreadsheets that are
    > produced on a regular basis.
    >
    > I would like to check that the file exists before referencing one of its
    > cells. Can anyone let me know how to check for the existance of a file?
    >
    > Many thanks.
    >
    >
    > PeterW
    >
    >




  3. #3
    PeterW
    Guest

    Re: Detect if file exists

    Thanks Bob.

    I'm afraid no. The spreadsheet will not be open but it may or may not exist
    on a server.

    It's the test for does it or does it not exist I require.

    Regards


    PeterW

    "Bob Phillips" <bob.phillips@notheretiscali.co.uk> wrote in message
    news:%23We1ZdXVGHA.5332@tk2msftngp13.phx.gbl...
    > Do you mean if it is open in your instance of Excel? If so, just try
    > something like
    >
    > On Error Resume Next
    > Set oWB = Workbooks(filename)
    > On Error Goto 0
    > If Not oWB Is Nothing Then
    > Msgbox "Workbook is open
    > End If
    >
    > --
    > HTH
    >
    > Bob Phillips
    >
    > (remove nothere from email address if mailing direct)
    >
    > "PeterW" <pwooly@btinternet.com> wrote in message
    > news:F5GdnY31ur7m0rPZRVny2g@bt.com...
    >> Hello.
    >>
    >> I am developing a spreadsheet that references other spreadsheets that are
    >> produced on a regular basis.
    >>
    >> I would like to check that the file exists before referencing one of its
    >> cells. Can anyone let me know how to check for the existance of a file?
    >>
    >> Many thanks.
    >>
    >>
    >> PeterW
    >>
    >>

    >
    >




  4. #4
    Dave Peterson
    Guest

    Re: Detect if file exists

    dim teststr as string
    teststr = ""
    on error resume next
    teststr = dir("yourpath\yourfilenamehere")
    on error goto 0

    if teststr = "" then
    'not found
    else
    'found
    end if


    is one way.

    PeterW wrote:
    >
    > Thanks Bob.
    >
    > I'm afraid no. The spreadsheet will not be open but it may or may not exist
    > on a server.
    >
    > It's the test for does it or does it not exist I require.
    >
    > Regards
    >
    > PeterW
    >
    > "Bob Phillips" <bob.phillips@notheretiscali.co.uk> wrote in message
    > news:%23We1ZdXVGHA.5332@tk2msftngp13.phx.gbl...
    > > Do you mean if it is open in your instance of Excel? If so, just try
    > > something like
    > >
    > > On Error Resume Next
    > > Set oWB = Workbooks(filename)
    > > On Error Goto 0
    > > If Not oWB Is Nothing Then
    > > Msgbox "Workbook is open
    > > End If
    > >
    > > --
    > > HTH
    > >
    > > Bob Phillips
    > >
    > > (remove nothere from email address if mailing direct)
    > >
    > > "PeterW" <pwooly@btinternet.com> wrote in message
    > > news:F5GdnY31ur7m0rPZRVny2g@bt.com...
    > >> Hello.
    > >>
    > >> I am developing a spreadsheet that references other spreadsheets that are
    > >> produced on a regular basis.
    > >>
    > >> I would like to check that the file exists before referencing one of its
    > >> cells. Can anyone let me know how to check for the existance of a file?
    > >>
    > >> Many thanks.
    > >>
    > >>
    > >> PeterW
    > >>
    > >>

    > >
    > >


    --

    Dave Peterson

  5. #5
    Raymond Cruz
    Guest

    Re: Detect if file exists

    Set fs = CreateObject("Scripting.FileSystemObject")
    If fs.FileExists(fullFileName) Then
    ....
    EndIf

    "PeterW" <pwooly@btinternet.com> wrote in message
    news:F5GdnY31ur7m0rPZRVny2g@bt.com...
    > Hello.
    >
    > I am developing a spreadsheet that references other spreadsheets that are
    > produced on a regular basis.
    >
    > I would like to check that the file exists before referencing one of its
    > cells. Can anyone let me know how to check for the existance of a file?
    >
    > Many thanks.
    >
    >
    > PeterW
    >
    >




  6. #6
    PeterW
    Guest

    Re: Detect if file exists

    Thank you all very much for your help

    PeterW

    "PeterW" <pwooly@btinternet.com> wrote in message
    news:F5GdnY31ur7m0rPZRVny2g@bt.com...
    > Hello.
    >
    > I am developing a spreadsheet that references other spreadsheets that are
    > produced on a regular basis.
    >
    > I would like to check that the file exists before referencing one of its
    > cells. Can anyone let me know how to check for the existance of a file?
    >
    > Many thanks.
    >
    >
    > PeterW
    >




+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1