![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Board Regular
Join Date: May 2002
Posts: 251
|
hi,
Is ther anyway that you can hide formula's in selected range? Thanks |
|
|
|
|
|
#2 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Sunny, spring-like Hull
Posts: 3,339
|
There's a couple of ways you might want to consider- first, click on Tools-Options and the 'View' tab, uncheck the Show Formula Bar box. The second needs a bit of code, add these lines to the workbook module in the VBA editor: -
Private Sub Workbook_BeforeClose(Cancel As Boolean) Application.DisplayFormulaBar = True End Sub Private Sub Workbook_Open() Application.DisplayFormulaBar = False End Sub |
|
|
|
|
|
#3 |
|
Board Regular
Join Date: May 2002
Posts: 251
|
Thank you very much.
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|