Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15
Default how to stop long formulas from obscuring column letters?

how do I vertically enlarge the formula window, so that when i click on a
cell with a long formula in it, the formula doesn't cover up the column
headers?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default how to stop long formulas from obscuring column letters?

Maybe you could just hide the formula bar.
View|Uncheck Formula Bar

Or maybe you could resize the window so that the column headers aren't so close
to the formula bar.



GoBobbyGo wrote:

how do I vertically enlarge the formula window, so that when i click on a
cell with a long formula in it, the formula doesn't cover up the column
headers?


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,173
Default how to stop long formulas from obscuring column letters?

This is not available pre 2007. The new version has this functionality. If
you don't want to see the formula at all, you can mark the cell formula as
hidden in FormatCells...Protection and protect the sheet

--
HTH
Nick Hodge
Microsoft MVP - Excel
Southampton, England
DTHIS
www.nickhodge.co.uk


"GoBobbyGo" wrote in message
...
how do I vertically enlarge the formula window, so that when i click on a
cell with a long formula in it, the formula doesn't cover up the column
headers?


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,886
Default how to stop long formulas from obscuring column letters?

Hi

I use a small macro to shrink the size of the sheet so the long formulae
don't overlap my cells.
It is a toggle, so invoking it again switches the sheet back to normal
state.
I have placed a button on my toolbar and attached the macro to it, so it
is very easy to switch states.

Sub smallsheet()
If ActiveWindow.WindowState = xlMaximized Then
Windows.Arrange ArrangeStyle:=xlCascade
With ActiveWindow
.Top = 56.5
.Left = -2.75
.Width = 765
.Height = 393
End With
Else
ActiveWindow.WindowState = xlMaximized
End If
End Sub


You can copy the code and paste it into your Visual Basic Editor
(VBE) in a Standard Module located in your file.
To do this,
Alt + F11 (open VBE)
Ctrl + R (open Project Explorer)
Select the file name on the left
Insert Module
Paste code in Module

For more help on writing and inserting macros, David McRitchie has lots
of useful help on his site at
http://www.mvps.org/dmcritchie/excel/install.htm
http://www.mvps.org/dmcritchie/excel/getstarted.htm


--
Regards

Roger Govier


"GoBobbyGo" wrote in message
...
how do I vertically enlarge the formula window, so that when i click
on a
cell with a long formula in it, the formula doesn't cover up the
column
headers?



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default how to stop long formulas from obscuring column letters?

Resize the Window so you're not working in a maximized window.

Alternative..........................

A kludgy work-around............

WindowNew WindowArrangeHorizontal.

Arrange top window so's it covers 4 or 5 rows.

Work in the bottom window. Your long formulas will drop down into the top
window when you select a cell in lower window.


Gord Dibben Excel MVP

On Tue, 19 Dec 2006 14:39:01 -0800, GoBobbyGo
wrote:

how do I vertically enlarge the formula window, so that when i click on a
cell with a long formula in it, the formula doesn't cover up the column
headers?


Gord Dibben MS Excel MVP


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
How do I combine spreadsheets and documents in one file? Trish Excel Discussion (Misc queries) 3 November 9th 06 09:17 PM
Conditional Format as a MACRO Gunjani Excel Worksheet Functions 3 March 29th 06 05:22 PM
IF/AND/OR/DATEIF Issue...sorry...long post... EDSTAFF Excel Worksheet Functions 1 November 10th 05 12:28 AM
creating a bar graph Johnfli Excel Discussion (Misc queries) 0 October 26th 05 08:16 PM
clock Wildman Excel Worksheet Functions 2 April 26th 05 10:31 AM


All times are GMT +1. The time now is 10:52 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"