vote up 0 vote down star

Hello, and sorry for this rudimentary question, but hours of Googling and looking through posts hasn't answered this question yet.

I have a Worksheet in Excel that has somehow grown to 241 columns and 3851 rows, and I wish to delete these excess columns/rows until I'm down to about 25 columns by 50 rows. Several posts say to select the column, choose delete, and the columns will be deleted. This option does nothing for some reason; selecting a column by it's header then selecting delete causes the Worksheet to do nothing. If I select a cell or range of cells, and choose the delete option, I'm given the option to shift cells left, up, delete entire row or delete entire column. Regardless of what option I use, my total number of columns and rows are always set at 241 columns by 3851 rows.

How can I trim my worksheet down, either through Excel or VBA?

Thanks in advance, I hope this question isn't too basic -_-

flag
2  
You may want to consider restoring your original question and posting your answer. It may be of use to someone else. :) – Adam Paynter Oct 13 at 23:52
In the future, it would be better for you to leave your question intact, and post your solution as an answer below. This way, people who run into the same problem may find your question and benefit from its answer. – Jasarien Oct 13 at 23:52
People can delete their questions? That seems wrong... – recursive Oct 13 at 23:53
Looking at the history it didn't seem like a programming related question anyway, so I won't bother restoring it. – Outlaw Programmer Oct 13 at 23:55
I just rolled back the edit that deleted the text of the question, for posterity's sake. – Daniel Pryden Oct 13 at 23:56
show 1 more comment

closed as not a real question by Brian, recursive, Outlaw Programmer, Jonathan Fingland, OMG Ponies Oct 14 at 0:06

1 Answer

vote up 0 vote down

Excel doesn't work like that.

An excel document in 2003 goes from A-IV and 1-65536 (in 2007 the limits were increased). You may only be "storing" data in those cells, but an excel worksheet will still 'have' all of those other cells.

They are there as empty space, but it won't effect space the worksheet is taking on your hard drive. If you aren't using those other cells, you can just ignore them.

When the other people are telling you to select the rows/columns and click delete, what that is doing is removing that data (the worksheet will still have the same number of cells).

e.g. if your workhseet looke like this

  • A AA AAA
  • B BB BBB
  • C CC CCC
  • D DD DDD

and you select the middle 2 rows and go delete. Excel will delete the data and then shift the remaining data up resulting in

  • A AA AAA
  • D DD DDD

the rest will still be blank. I hope this clears it up for you

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.