Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I can't figure out why my Excel file size is jumping from 550kb to 35mb. I
am running some formulas to copy data, and some special links from other pages, as well as scripts which hides rows... I tried deleting extra unhidden rows, and got nothing. Any ideas? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
After deleting the extra rows and columns you must SAVE the workbook to
effect changes in used range. As far as the size jump..............change the macro code to copy data etc. to a defined rather. Sounds like you are copying to a greater range than you need. Gord Dibben MS Excel MVP On Fri, 22 Jan 2010 09:06:01 -0800, New2Macros wrote: I can't figure out why my Excel file size is jumping from 550kb to 35mb. I am running some formulas to copy data, and some special links from other pages, as well as scripts which hides rows... I tried deleting extra unhidden rows, and got nothing. Any ideas? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Should read defined range
On Fri, 22 Jan 2010 11:13:07 -0800, Gord Dibben <gorddibbATshawDOTca wrote: As far as the size jump..............change the macro code to copy data etc. to a defined rather. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Still can't find it. I only have a string in Visual Basic - I tried to stay
away from macros. All that string is doing is cutting off rows based on a certain cell's value. Thanks "Gord Dibben" wrote: Should read defined range On Fri, 22 Jan 2010 11:13:07 -0800, Gord Dibben <gorddibbATshawDOTca wrote: As far as the size jump..............change the macro code to copy data etc. to a defined rather. . |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have not yet seen confirmation that you saved the workbook after deleting
unused rows and columns on all worksheets. I cannot see the "string in Visual Basic" so not easy to trouble-shoot that aspect. Gord On Fri, 22 Jan 2010 12:12:07 -0800, New2Macros wrote: Still can't find it. I only have a string in Visual Basic - I tried to stay away from macros. All that string is doing is cutting off rows based on a certain cell's value. Thanks "Gord Dibben" wrote: Should read defined range On Fri, 22 Jan 2010 11:13:07 -0800, Gord Dibben <gorddibbATshawDOTca wrote: As far as the size jump..............change the macro code to copy data etc. to a defined rather. . |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have had to save it a lot and keep backups to fall back on if it suddenly
expands in size. I deleted rows and colums that were not being hidden by Visual Basic. However, nothing has been changed in Visual Basic for a year, and it has been working fine until now. Here is the string I'm using to hide rows that are being unused: Private Sub Worksheet_Change(ByVal Target As Range) If Target.Address = "$U$1" Then Range("2:" & Rows.Count).EntireRow.Hidden = False Range(CStr(3 + 2 * Range("U1").Value) & ":" & _ Rows.Count).EntireRow.Hidden = True End If End Sub I just plug a number into cell U1, and it hides the correct cells. Thanks "Gord Dibben" wrote: I have not yet seen confirmation that you saved the workbook after deleting unused rows and columns on all worksheets. I cannot see the "string in Visual Basic" so not easy to trouble-shoot that aspect. Gord On Fri, 22 Jan 2010 12:12:07 -0800, New2Macros wrote: Still can't find it. I only have a string in Visual Basic - I tried to stay away from macros. All that string is doing is cutting off rows based on a certain cell's value. Thanks "Gord Dibben" wrote: Should read defined range On Fri, 22 Jan 2010 11:13:07 -0800, Gord Dibben <gorddibbATshawDOTca wrote: As far as the size jump..............change the macro code to copy data etc. to a defined rather. . . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
File Size With Macros Has Increased From Its Origina Size | Excel Discussion (Misc queries) | |||
Size Jump | Excel Discussion (Misc queries) | |||
Excel 2003 default file location always jump to .....\Proof Help | Excel Discussion (Misc queries) | |||
Excel kept on asking to save file every time I jump from one sheet to another! | Excel Worksheet Functions | |||
jump to hyperlink, extract value at specific destination in file | Excel Worksheet Functions |