Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Formula Bar Contents Hiding Worksheet 2

Status
Not open for further replies.

mattygriff

Programmer
May 14, 2001
350
GB
I have a worksheet with a single large cell which takes text entry. However, when lengthy text is entered, the formula bar extends down the screen, hiding much of the worksheet.

The rest of the cell is protected so users can't move the cursor to another cell.

Is there any way to limit what is displayed in the formula bar to, say, a single line of text? Or is there any other way that I can overcome this problem?

Thanks in advance.
 
EDIT my post above - in the 2nd para, I mean that the rest of the SHEET is protected, not the rest of the CELL.

Sorry.
 
Hi,

Tools > Options > General ...

uncheck Show Formula Bar

Skip,
[glasses]Don't let the Diatribe...
talk you to death![tongue]

[glasses]Just traded in my old subtlety...
for a NUANCE![tongue]
 
Thanks Skip - was hoping for a solution specific to that sheet which would let me keep the formula bar on the other sheets in my workbook but it does the job.
 
Try this in the worksheet's code module:
Code:
Private Sub Worksheet_Activate()
    Application.DisplayFormulaBar = False
End Sub

Private Sub Worksheet_Deactivate()
    Application.DisplayFormulaBar = True
End Sub
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top