Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,058
Default Configure Formula Bar

I am entering text in a cell. I insert some ALT-ENTERs to force hard returns
within the cell.

In Excel 2003, the formula bar height would automatically adjust to show the
full text.

In Excel 2007, I have to manually adjust the height of the formula bar.

Is there any way, in Excel 2007, to configure the formula bar to adjust
automatically??
--
Gary''s Student - gsnu200902
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Configure Formula Bar

We recently discussed this in another forum.

This behavior is a trade-off between versions. In Excel 2003 and earlier the
formula bar automatically expands *but* it also will expand to cover the
grid which is not good. In Excel 2007 they made it so that when the formula
bar is expanded it doesn't cover the grid *but* the formula bar doesn't
automatically expand. The reason for this seems to be that a constantly
expanding/retracting formula bar is not very aesthetically pleasing.

One of the MVPs wrote some code to automatically resize the formula bar but
their conclusion was that it is a horrible computing experience and strongly
recommended not trying to do this.

--
Biff
Microsoft Excel MVP


"Gary''s Student" wrote in message
...
I am entering text in a cell. I insert some ALT-ENTERs to force hard
returns
within the cell.

In Excel 2003, the formula bar height would automatically adjust to show
the
full text.

In Excel 2007, I have to manually adjust the height of the formula bar.

Is there any way, in Excel 2007, to configure the formula bar to adjust
automatically??
--
Gary''s Student - gsnu200902



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,058
Default Configure Formula Bar

Thanks Biff.
--
Gary''s Student - gsnu200902


"T. Valko" wrote:

We recently discussed this in another forum.

This behavior is a trade-off between versions. In Excel 2003 and earlier the
formula bar automatically expands *but* it also will expand to cover the
grid which is not good. In Excel 2007 they made it so that when the formula
bar is expanded it doesn't cover the grid *but* the formula bar doesn't
automatically expand. The reason for this seems to be that a constantly
expanding/retracting formula bar is not very aesthetically pleasing.

One of the MVPs wrote some code to automatically resize the formula bar but
their conclusion was that it is a horrible computing experience and strongly
recommended not trying to do this.

--
Biff
Microsoft Excel MVP


"Gary''s Student" wrote in message
...
I am entering text in a cell. I insert some ALT-ENTERs to force hard
returns
within the cell.

In Excel 2003, the formula bar height would automatically adjust to show
the
full text.

In Excel 2007, I have to manually adjust the height of the formula bar.

Is there any way, in Excel 2007, to configure the formula bar to adjust
automatically??
--
Gary''s Student - gsnu200902




  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Configure Formula Bar

I don't like either behavior!

I hate in earlier versions when the grid gets covered but I also don't like
in Excel 2007 that I can't see the entire contents of the formula bar unless
I manually resize it.

You could set it to a "default" size, say, like 5 rows high, but then
whatever's in the formula bar won't always take up all 5 of those rows so
there's wasted space and those 5 rows push 5 rows out of the grid.

Damned if you do, damned if you don't!

--
Biff
Microsoft Excel MVP


"Gary''s Student" wrote in message
...
Thanks Biff.
--
Gary''s Student - gsnu200902


"T. Valko" wrote:

We recently discussed this in another forum.

This behavior is a trade-off between versions. In Excel 2003 and earlier
the
formula bar automatically expands *but* it also will expand to cover the
grid which is not good. In Excel 2007 they made it so that when the
formula
bar is expanded it doesn't cover the grid *but* the formula bar doesn't
automatically expand. The reason for this seems to be that a constantly
expanding/retracting formula bar is not very aesthetically pleasing.

One of the MVPs wrote some code to automatically resize the formula bar
but
their conclusion was that it is a horrible computing experience and
strongly
recommended not trying to do this.

--
Biff
Microsoft Excel MVP


"Gary''s Student" wrote in
message
...
I am entering text in a cell. I insert some ALT-ENTERs to force hard
returns
within the cell.

In Excel 2003, the formula bar height would automatically adjust to
show
the
full text.

In Excel 2007, I have to manually adjust the height of the formula bar.

Is there any way, in Excel 2007, to configure the formula bar to adjust
automatically??
--
Gary''s Student - gsnu200902






  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,058
Default Configure Formula Bar

I guess I could use an event macro to set the formula bar height to the
number of CHAR(10)'s in the cell, but I shouldn't have to go to this trouble.
--
Gary''s Student - gsnu200902


"T. Valko" wrote:

I don't like either behavior!

I hate in earlier versions when the grid gets covered but I also don't like
in Excel 2007 that I can't see the entire contents of the formula bar unless
I manually resize it.

You could set it to a "default" size, say, like 5 rows high, but then
whatever's in the formula bar won't always take up all 5 of those rows so
there's wasted space and those 5 rows push 5 rows out of the grid.

Damned if you do, damned if you don't!

--
Biff
Microsoft Excel MVP


"Gary''s Student" wrote in message
...
Thanks Biff.
--
Gary''s Student - gsnu200902


"T. Valko" wrote:

We recently discussed this in another forum.

This behavior is a trade-off between versions. In Excel 2003 and earlier
the
formula bar automatically expands *but* it also will expand to cover the
grid which is not good. In Excel 2007 they made it so that when the
formula
bar is expanded it doesn't cover the grid *but* the formula bar doesn't
automatically expand. The reason for this seems to be that a constantly
expanding/retracting formula bar is not very aesthetically pleasing.

One of the MVPs wrote some code to automatically resize the formula bar
but
their conclusion was that it is a horrible computing experience and
strongly
recommended not trying to do this.

--
Biff
Microsoft Excel MVP


"Gary''s Student" wrote in
message
...
I am entering text in a cell. I insert some ALT-ENTERs to force hard
returns
within the cell.

In Excel 2003, the formula bar height would automatically adjust to
show
the
full text.

In Excel 2007, I have to manually adjust the height of the formula bar.

Is there any way, in Excel 2007, to configure the formula bar to adjust
automatically??
--
Gary''s Student - gsnu200902








  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Configure Formula Bar

That's the method the MVP used, the Worksheet_SelectionChange event, but for
the entire sheet. If you restrict the macro to a specific range it might be
acceptable.

I shouldn't have to go to this trouble.


I hear ya!

--
Biff
Microsoft Excel MVP


"Gary''s Student" wrote in message
...
I guess I could use an event macro to set the formula bar height to the
number of CHAR(10)'s in the cell, but I shouldn't have to go to this
trouble.
--
Gary''s Student - gsnu200902


"T. Valko" wrote:

I don't like either behavior!

I hate in earlier versions when the grid gets covered but I also don't
like
in Excel 2007 that I can't see the entire contents of the formula bar
unless
I manually resize it.

You could set it to a "default" size, say, like 5 rows high, but then
whatever's in the formula bar won't always take up all 5 of those rows so
there's wasted space and those 5 rows push 5 rows out of the grid.

Damned if you do, damned if you don't!

--
Biff
Microsoft Excel MVP


"Gary''s Student" wrote in
message
...
Thanks Biff.
--
Gary''s Student - gsnu200902


"T. Valko" wrote:

We recently discussed this in another forum.

This behavior is a trade-off between versions. In Excel 2003 and
earlier
the
formula bar automatically expands *but* it also will expand to cover
the
grid which is not good. In Excel 2007 they made it so that when the
formula
bar is expanded it doesn't cover the grid *but* the formula bar
doesn't
automatically expand. The reason for this seems to be that a
constantly
expanding/retracting formula bar is not very aesthetically pleasing.

One of the MVPs wrote some code to automatically resize the formula
bar
but
their conclusion was that it is a horrible computing experience and
strongly
recommended not trying to do this.

--
Biff
Microsoft Excel MVP


"Gary''s Student" wrote in
message
...
I am entering text in a cell. I insert some ALT-ENTERs to force hard
returns
within the cell.

In Excel 2003, the formula bar height would automatically adjust to
show
the
full text.

In Excel 2007, I have to manually adjust the height of the formula
bar.

Is there any way, in Excel 2007, to configure the formula bar to
adjust
automatically??
--
Gary''s Student - gsnu200902








  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 690
Default Configure Formula Bar

...I can't see the entire contents of the formula bar
unless I manually resize it.


Just to mention if you are dragging the formula bar down...

Ctrl + Shift + "U"

to toggle the expansion of the formula bar in Excel 2007.

= = = = =
HTH
Dana DeLouis


T. Valko wrote:
I don't like either behavior!

I hate in earlier versions when the grid gets covered but I also don't like
in Excel 2007 that I can't see the entire contents of the formula bar unless
I manually resize it.

You could set it to a "default" size, say, like 5 rows high, but then
whatever's in the formula bar won't always take up all 5 of those rows so
there's wasted space and those 5 rows push 5 rows out of the grid.

Damned if you do, damned if you don't!

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Why must I configure excel with every use tshahen Excel Discussion (Misc queries) 1 July 16th 09 05:15 PM
configure add button & code [email protected] uk Excel Discussion (Misc queries) 7 November 24th 08 02:34 PM
how do I configure data vertically snuggie1bear Excel Discussion (Misc queries) 2 March 5th 07 10:44 PM
Which Forumla and How do I configure in Excel? Ben Excel Discussion (Misc queries) 2 September 26th 05 11:34 PM
configure hyperlink formatting snoach Excel Discussion (Misc queries) 2 May 27th 05 10:24 AM


All times are GMT +1. The time now is 04:13 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"