A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

View filename - Excel 2007



 
 
Thread Tools Display Modes
  #1  
Old December 23rd, 2009, 03:57 PM posted to microsoft.public.excel.misc
Eric_NY
external usenet poster
 
Posts: 88
Default View filename - Excel 2007

I've just upgraded to Excel 2007.

Excel 2003 used to have an option to display the name of the saved worksheet
file at the top of the screen. I'm sure Excel 2007 has this option, but I
can't figure out how to turn it on.

Can anyone help?

Thanks.
  #2  
Old December 23rd, 2009, 04:26 PM posted to microsoft.public.excel.misc
Mike H
external usenet poster
 
Posts: 8,419
Default View filename - Excel 2007

Eric,

I too am new to E2007 but I'm not aware of any way to switch it off in E2007
without using code. There are various things you can do not limited too:-


Set things back to default
Application.Caption = ""

display the name
Application.Caption = ActiveWorkbook.Name

Display the path and name
Application.Caption = ActiveWorkbook.FullName

Put your own text in

Application.Caption = "You'll never walk alone"

Mike





"Eric_NY" wrote:

I've just upgraded to Excel 2007.

Excel 2003 used to have an option to display the name of the saved worksheet
file at the top of the screen. I'm sure Excel 2007 has this option, but I
can't figure out how to turn it on.

Can anyone help?

Thanks.

  #3  
Old December 23rd, 2009, 04:52 PM posted to microsoft.public.excel.misc
Ms-Exl-Learner
external usenet poster
 
Posts: 522
Default View filename - Excel 2007

I don't know whether this is what you are looking for...

If you are saying about the address bar then have a look in the below
mentioned Link for Solution.

http://office.microsoft.com/en-us/he...659011033.aspx

--
Remember to Click Yes, if this post helps!

--------------------
(Ms-Exl-Learner)
--------------------


"Eric_NY" wrote:

I've just upgraded to Excel 2007.

Excel 2003 used to have an option to display the name of the saved worksheet
file at the top of the screen. I'm sure Excel 2007 has this option, but I
can't figure out how to turn it on.

Can anyone help?

Thanks.

  #4  
Old December 23rd, 2009, 06:09 PM posted to microsoft.public.excel.misc
Gord Dibben
external usenet poster
 
Posts: 20,252
Default View filename - Excel 2007

Do you mean fullname including path?

Excel 2003 never had that option AFAIK

I hope I am wrong but I don't think there is a setting for that.

You can use VBA.

Either workbook_open event code...........

Private Sub Workbook_Open()
ActiveWindow.Caption = ActiveWorkbook.FullName
End Sub

To clear when closing...............

Private Sub Workbook_BeforeClose(Cancel As Boolean)
Application.Caption = ""
End Sub

Or a toggle macro..........

Sub CaptionToggle()
' toggles title bar between document name and full path
If ActiveWindow.Caption = ActiveWorkbook.Name Then
ActiveWindow.Caption = ActiveWorkbook.FullName
Else: ActiveWindow.Caption = ActiveWorkbook.Name
End If
End Sub


Gord Dibben MS Excel MVP

On Wed, 23 Dec 2009 07:57:02 -0800, Eric_NY
wrote:

I've just upgraded to Excel 2007.

Excel 2003 used to have an option to display the name of the saved worksheet
file at the top of the screen. I'm sure Excel 2007 has this option, but I
can't figure out how to turn it on.

Can anyone help?

Thanks.


  #5  
Old December 23rd, 2009, 07:27 PM posted to microsoft.public.excel.misc
ORLANDO VAZQUEZ[_4_]
external usenet poster
 
Posts: 6
Default View filename - Excel 2007

Eric,

Excel 2003 has a "Web" toolbar under View/Toolbars/Web

This will show the current file name in the "address" portion of the web
toolbar.


Let me know.



"Eric_NY" wrote:

I've just upgraded to Excel 2007.

Excel 2003 used to have an option to display the name of the saved worksheet
file at the top of the screen. I'm sure Excel 2007 has this option, but I
can't figure out how to turn it on.

Can anyone help?

Thanks.

  #6  
Old December 23rd, 2009, 08:27 PM posted to microsoft.public.excel.misc
Eric_NY
external usenet poster
 
Posts: 88
Default View filename - Excel 2007

Thanks to all for your suggestions.

Mike H - I don't want to switch it off. I want to switch it on.

Ms-Exl-Learner - Thanks. That's just what I'm looking for.

Gord - Yes, Excel 2003 did have the ability to display the full file name
including path.

Orlando - I know that Excel 2003 has it. I used it frequently. What I'm
trying to do is to find the corresponding feature in Excel 2007 - that was
the purpose of my original post.

"ORLANDO VAZQUEZ" wrote:

Eric,

Excel 2003 has a "Web" toolbar under View/Toolbars/Web

This will show the current file name in the "address" portion of the web
toolbar.


Let me know.



"Eric_NY" wrote:

I've just upgraded to Excel 2007.

Excel 2003 used to have an option to display the name of the saved worksheet
file at the top of the screen. I'm sure Excel 2007 has this option, but I
can't figure out how to turn it on.

Can anyone help?

Thanks.

  #7  
Old December 23rd, 2009, 09:59 PM posted to microsoft.public.excel.misc
Gord Dibben
external usenet poster
 
Posts: 20,252
Default View filename - Excel 2007

Could you please point me to the settings for that feature?

I mean without VBA, of course.


Gord

On Wed, 23 Dec 2009 12:27:01 -0800, Eric_NY
wrote:

Gord - Yes, Excel 2003 did have the ability to display the full file name
including path.


  #8  
Old December 23rd, 2009, 10:03 PM posted to microsoft.public.excel.misc
Gord Dibben
external usenet poster
 
Posts: 20,252
Default View filename - Excel 2007

You are happy with the Web Toolbar?

Not what I would consider showing "at the top of the screen"

I mis-assumed you meant on the Title Bar


Gord

On Wed, 23 Dec 2009 13:59:33 -0800, Gord Dibben gorddibbATshawDOTca wrote:

Could you please point me to the settings for that feature?

I mean without VBA, of course.


Gord

On Wed, 23 Dec 2009 12:27:01 -0800, Eric_NY
wrote:

Gord - Yes, Excel 2003 did have the ability to display the full file name
including path.


  #9  
Old December 23rd, 2009, 10:06 PM posted to microsoft.public.excel.misc
Dave Peterson
external usenet poster
 
Posts: 19,791
Default View filename - Excel 2007

xl2003 doesn't have anything builtin to do display the full path in the caption.

If you really, really, really think you're right, maybe you could explain to to
turn it on in xl2003. There may be ways to translate those instructions to
xl2007.

===========
On the other hand, you could use code like what Gord suggested--but make it more
automatic by using an application event.

If you want to try, start a new workbook (or use your personal.xlsm/.xlsb/.xls
workbook).

This goes under the ThisWorkbook module--not in a General module, not in a
worksheet module.

Option Explicit
Public WithEvents xlApp As Excel.Application
Private Sub Workbook_Open()
Set xlApp = Application
End Sub
Private Sub Workbook_Close()
Set xlApp = Nothing
End Sub
Private Sub xlApp_WindowActivate(ByVal Wb As Workbook, ByVal Wn As Window)
Wn.Caption = Wb.FullName
End Sub

If you save that workbook in your XLStart folder, then each time excel opens,
this workbook will open.

If you're new to macros:

Debra Dalgleish has some notes how to implement macros he
http://www.contextures.com/xlvba01.html

David McRitchie has an intro to macros:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

Ron de Bruin's intro to macros:
http://www.rondebruin.nl/code.htm

(General, Regular and Standard modules all describe the same thing.)

===============
If you really saw the full name in the caption, then you had one of these
helpful macros running. And if you don't see the fullname in the caption, then
either you didn't bring the workbook with that macro, or didn't put it in the
correct location, or didn't allow macros to run.


Eric_NY wrote:

Thanks to all for your suggestions.

Mike H - I don't want to switch it off. I want to switch it on.

Ms-Exl-Learner - Thanks. That's just what I'm looking for.

Gord - Yes, Excel 2003 did have the ability to display the full file name
including path.

Orlando - I know that Excel 2003 has it. I used it frequently. What I'm
trying to do is to find the corresponding feature in Excel 2007 - that was
the purpose of my original post.

"ORLANDO VAZQUEZ" wrote:

Eric,

Excel 2003 has a "Web" toolbar under View/Toolbars/Web

This will show the current file name in the "address" portion of the web
toolbar.


Let me know.



"Eric_NY" wrote:

I've just upgraded to Excel 2007.

Excel 2003 used to have an option to display the name of the saved worksheet
file at the top of the screen. I'm sure Excel 2007 has this option, but I
can't figure out how to turn it on.

Can anyone help?

Thanks.


--

Dave Peterson
 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 08:52 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.