Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Is there any way of telling the size of each sheet in a multisheet workbook? Thanks -- Brisbane Rob ------------------------------------------------------------------------ Brisbane Rob's Profile: http://www.excelforum.com/member.php...o&userid=25096 View this thread: http://www.excelforum.com/showthread...hreadid=514362 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Not totally sure of what your asking for but I worked up this approach,
which Summaries to the First Position Worksheet named "Master" in Cells A2:B4 (say) all the worksheet names and the Usedrange address of each. Post this code into a satndatd module: Sub Foo() Dim Cwsused As String Dim i As Integer For i = 2 To ThisWorkbook.Worksheets.Count WsName = Worksheets(i).Name Cwsused = Worksheets(i).UsedRange.Address(0, 0) With Sheets("Master") Cells(i, 1).Value = WsName Cells(i, 2).Value = Cwsused End With Next i End Sub Post back to further define what you really want. Jim May "Brisbane Rob" wrote: Is there any way of telling the size of each sheet in a multisheet workbook? Thanks -- Brisbane Rob ------------------------------------------------------------------------ Brisbane Rob's Profile: http://www.excelforum.com/member.php...o&userid=25096 View this thread: http://www.excelforum.com/showthread...hreadid=514362 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You mean like cells used or how much harddisk space is used for each?
I'm guessing harddisk space. I don't worry about it. Whatever is required for my workbook to work is what I end up with. But you could extract each worksheet to a new workbook, save that workbook and look at the filesize of each of those workbooks. There's a little overhead even if there's nothing in any of the worksheets, but it should give you an estimate. Brisbane Rob wrote: Is there any way of telling the size of each sheet in a multisheet workbook? Thanks -- Brisbane Rob ------------------------------------------------------------------------ Brisbane Rob's Profile: http://www.excelforum.com/member.php...o&userid=25096 View this thread: http://www.excelforum.com/showthread...hreadid=514362 -- Dave Peterson |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() The code for the range of each sheet is really useful and I'll be using it.Thanks. What I was really after is how much disk space each sheet in a workbook is using. I've got a workbook with ten sheets (some with charts) and it weighs in at over 5 mb and I can't figure out where all the disk space is being used. I need to thin it down so I can send it out over the network and 5 mb is too big. -- Brisbane Rob ------------------------------------------------------------------------ Brisbane Rob's Profile: http://www.excelforum.com/member.php...o&userid=25096 View this thread: http://www.excelforum.com/showthread...hreadid=514362 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to get a row consecutive from a sheet to another | Excel Worksheet Functions | |||
Clicking Cell Link Changes Cell on Another Sheet | Excel Discussion (Misc queries) | |||
Copying multiple sheets from one book 2 another and undertake spec | Excel Discussion (Misc queries) | |||
Function to automatically insert a new sheet as a result of data entry? | Excel Worksheet Functions | |||
Naming & renaming a sheet tab | Excel Worksheet Functions |