#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 21
Default hidden sheets

Is it possible to hide the worksheets within a workbook, and still have the
workbook calculate formulas based off of the hidden worksheets. The reason i
ask is i have alot of information within the spreadsheet that i do not really
need at this time, and i would like to hide it so that it makes it easier to
navigate through the workbook.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default hidden sheets

Hi,

Yes you can still read values from hidden sheets and use those values in a
calculation and you can write to hidden sheets with code.

Mike

"Soccerboy83" wrote:

Is it possible to hide the worksheets within a workbook, and still have the
workbook calculate formulas based off of the hidden worksheets. The reason i
ask is i have alot of information within the spreadsheet that i do not really
need at this time, and i would like to hide it so that it makes it easier to
navigate through the workbook.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 21
Default hidden sheets

How can i accomplish this?

"Mike H" wrote:

Hi,

Yes you can still read values from hidden sheets and use those values in a
calculation and you can write to hidden sheets with code.

Mike

"Soccerboy83" wrote:

Is it possible to hide the worksheets within a workbook, and still have the
workbook calculate formulas based off of the hidden worksheets. The reason i
ask is i have alot of information within the spreadsheet that i do not really
need at this time, and i would like to hide it so that it makes it easier to
navigate through the workbook.

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default hidden sheets

If you're writing a macro, there are not many things that you do that need to
have the sheet visible.

Dim myCell as range
set mycell = worksheets("hidden").range("A1")

if isnumeric(mycell.value) then
mycell.value = mycell.value + 1
end if

This kind of code won't care.

And if you're doing some calculations, you can use a formula like:

=hidden!a1+hidden!c9

And the formula won't care if that sheet named Hidden is visible or not.

And in xl2003 menus, I can hide a sheet by:
Selecting the sheet(s)
Format|sheet|Hide

And unhide them the same way
format|sheet|unhide
(a single sheet at a time)

Soccerboy83 wrote:

How can i accomplish this?

"Mike H" wrote:

Hi,

Yes you can still read values from hidden sheets and use those values in a
calculation and you can write to hidden sheets with code.

Mike

"Soccerboy83" wrote:

Is it possible to hide the worksheets within a workbook, and still have the
workbook calculate formulas based off of the hidden worksheets. The reason i
ask is i have alot of information within the spreadsheet that i do not really
need at this time, and i would like to hide it so that it makes it easier to
navigate through the workbook.


--

Dave Peterson
  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 12
Default hidden sheets

Excel 2007: Home tabCells groupFormatHide & UnhideHide Sheet

Francis Hayes
www.TheExcelAddict.com


  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default hidden sheets

In Sheet1 cell A1 enter a value say 10,,and from Sheet2 try a formula
=Sheet1!A1+A1 after hidding sheet1. The formula should add the value of
hidden sheet A1 + sheet2 A1....Is this what you mean?

If this post helps click Yes
---------------
Jacob Skaria


"Soccerboy83" wrote:

How can i accomplish this?

"Mike H" wrote:

Hi,

Yes you can still read values from hidden sheets and use those values in a
calculation and you can write to hidden sheets with code.

Mike

"Soccerboy83" wrote:

Is it possible to hide the worksheets within a workbook, and still have the
workbook calculate formulas based off of the hidden worksheets. The reason i
ask is i have alot of information within the spreadsheet that i do not really
need at this time, and i would like to hide it so that it makes it easier to
navigate through the workbook.

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
data on hidden sheets Gizmo Excel Discussion (Misc queries) 1 January 31st 08 10:16 PM
Hidden Sheets QUESTION-MARK Excel Worksheet Functions 4 May 19th 06 07:06 PM
Macro and hidden sheets Metallo Excel Discussion (Misc queries) 7 January 19th 06 09:33 AM
Unhide hidden sheets Minos Excel Discussion (Misc queries) 1 November 25th 05 05:07 PM
Operating on hidden sheets Hari Prasadh Excel Discussion (Misc queries) 2 January 28th 05 08:33 AM


All times are GMT +1. The time now is 02:39 PM.

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

About Us

"It's about Microsoft Excel"