Closed Thread
Results 1 to 5 of 5

Show full path of files being saved

Hybrid View

  1. #1
    JERRY
    Guest

    Show full path of files being saved

    At times while working on my notebook and using the network, it is helpful
    when saving a file to show the complete path of the file I am saving. Is it
    possible to tweak the setup in Excel to show the whole path rather than just
    the filename? Now when I save, or save as, I get the file name only.

    Thanks for any help and direction here.

    Jerry



  2. #2
    Dave O
    Guest

    Re: Show full path of files being saved

    Is this any help? You can use this formula
    =CELL("filename")
    ....to show the full path and filename. This works when you have saved
    the file first.


  3. #3
    Bob Phillips
    Guest

    Re: Show full path of files being saved

    Private WithEvents App As Application

    Private Sub App_WindowActivate(ByVal Wb As Workbook, ByVal Wn As Window)
    Wn.Caption = Wb.FullName
    End Sub

    Private Sub Workbook_Open()
    Set App = Application
    End Sub


    This is workbook event code.
    To input this code, right click on the Excel icon on the worksheet
    (or next to the File menu if you maximise your workbooks),
    select View Code from the menu, and paste the code

    --

    HTH

    Bob Phillips

    (remove nothere from the email address if mailing direct)

    "JERRY" <jerry@home> wrote in message
    news:OFg$LxPeGHA.3484@TK2MSFTNGP04.phx.gbl...
    > At times while working on my notebook and using the network, it is helpful
    > when saving a file to show the complete path of the file I am saving. Is

    it
    > possible to tweak the setup in Excel to show the whole path rather than

    just
    > the filename? Now when I save, or save as, I get the file name only.
    >
    > Thanks for any help and direction here.
    >
    > Jerry
    >
    >




  4. #4
    JERRY
    Guest

    Re: Show full path of files being saved

    Relatively shallow user here. So while your suggestion is appreciated, it is
    not fully understood. Are you speaking of copying and pasting just the
    following three lines in the suggested location?
    ------------------------------------------
    Private Sub Workbook_Open()
    Set App = Application
    End Sub
    ---------------------------------------------
    Jerry


    "Bob Phillips" <bob.phillips@notheretiscali.co.uk> wrote in message
    news:eErCXBQeGHA.3388@TK2MSFTNGP05.phx.gbl...
    > Private WithEvents App As Application
    >
    > Private Sub App_WindowActivate(ByVal Wb As Workbook, ByVal Wn As Window)
    > Wn.Caption = Wb.FullName
    > End Sub
    >
    > Private Sub Workbook_Open()
    > Set App = Application
    > End Sub
    >
    >
    > This is workbook event code.
    > To input this code, right click on the Excel icon on the worksheet
    > (or next to the File menu if you maximise your workbooks),
    > select View Code from the menu, and paste the code
    >
    > --
    >
    > HTH
    >
    > Bob Phillips
    >
    > (remove nothere from the email address if mailing direct)
    >
    > "JERRY" <jerry@home> wrote in message
    > news:OFg$LxPeGHA.3484@TK2MSFTNGP04.phx.gbl...
    >> At times while working on my notebook and using the network, it is
    >> helpful
    >> when saving a file to show the complete path of the file I am saving. Is

    > it
    >> possible to tweak the setup in Excel to show the whole path rather than

    > just
    >> the filename? Now when I save, or save as, I get the file name only.
    >>
    >> Thanks for any help and direction here.
    >>
    >> Jerry
    >>
    >>

    >
    >




  5. #5
    Dave Peterson
    Guest

    Re: Show full path of files being saved

    Bob's suggestion changed the application's title bar to display the whole path,
    but you need both of his procedures in your ThisWorkbook module.

    DaveO's suggestion was a worksheet formula. Although, I would have used:
    =cell("Filename",a1)
    (including a reference to a cell in the same workbook

    Debra Dalgleish has another variation:
    http://contextures.com/xlfaqFun.html#SheetName

    And if you only need it occasionally, you can look under:
    file|properties|general tab



    JERRY wrote:
    >
    > Relatively shallow user here. So while your suggestion is appreciated, it is
    > not fully understood. Are you speaking of copying and pasting just the
    > following three lines in the suggested location?
    > ------------------------------------------
    > Private Sub Workbook_Open()
    > Set App = Application
    > End Sub
    > ---------------------------------------------
    > Jerry
    >
    > "Bob Phillips" <bob.phillips@notheretiscali.co.uk> wrote in message
    > news:eErCXBQeGHA.3388@TK2MSFTNGP05.phx.gbl...
    > > Private WithEvents App As Application
    > >
    > > Private Sub App_WindowActivate(ByVal Wb As Workbook, ByVal Wn As Window)
    > > Wn.Caption = Wb.FullName
    > > End Sub
    > >
    > > Private Sub Workbook_Open()
    > > Set App = Application
    > > End Sub
    > >
    > >
    > > This is workbook event code.
    > > To input this code, right click on the Excel icon on the worksheet
    > > (or next to the File menu if you maximise your workbooks),
    > > select View Code from the menu, and paste the code
    > >
    > > --
    > >
    > > HTH
    > >
    > > Bob Phillips
    > >
    > > (remove nothere from the email address if mailing direct)
    > >
    > > "JERRY" <jerry@home> wrote in message
    > > news:OFg$LxPeGHA.3484@TK2MSFTNGP04.phx.gbl...
    > >> At times while working on my notebook and using the network, it is
    > >> helpful
    > >> when saving a file to show the complete path of the file I am saving. Is

    > > it
    > >> possible to tweak the setup in Excel to show the whole path rather than

    > > just
    > >> the filename? Now when I save, or save as, I get the file name only.
    > >>
    > >> Thanks for any help and direction here.
    > >>
    > >> Jerry
    > >>
    > >>

    > >
    > >


    --

    Dave Peterson

Closed 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