PC Review


Reply
Thread Tools Rate Thread

how to determine the size of the sheet

 
 
Harald Staff
Guest
Posts: n/a
 
      27th Mar 2007
Hi Ahmed

The number of rows and columns are fixed. Your workaround would be to hide
the ones you consider unneeded.

HTH. Best wishes Harald

"Ahmed SHEBL" <(E-Mail Removed)> skrev i melding
news:%(E-Mail Removed)...
> Hi
>
> I had a collegue who told me once a way to dtermine the number of the rows
> in a sheet of the workbook I am working at.
> It is known that when you open a new workbook each sheet has maybe 65365

or
> something like that rows.
>
> MY QUESTION IS: HOW TO MAKE THE SHEET 1000 ROWS OR WHATEVER NUMBERS OF
> ROWS I ONLY NEED?
>
> Thanks in Advance,
>
> Ahmed
>



 
Reply With Quote
 
 
 
 
Ahmed SHEBL
Guest
Posts: n/a
 
      28th Mar 2007
Hi

I had a collegue who told me once a way to dtermine the number of the rows
in a sheet of the workbook I am working at.
It is known that when you open a new workbook each sheet has maybe 65365 or
something like that rows.

MY QUESTION IS: HOW TO MAKE THE SHEET 1000 ROWS OR WHATEVER NUMBERS OF
ROWS I ONLY NEED?

Thanks in Advance,

Ahmed

 
Reply With Quote
 
Bob Umlas
Guest
Posts: n/a
 
      28th Mar 2007
Hey, Harald -- how are you? You were/are missed! Hope things are well.
Bob Umlas

"Harald Staff" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> Hi Ahmed
>
> The number of rows and columns are fixed. Your workaround would be to hide
> the ones you consider unneeded.
>
> HTH. Best wishes Harald
>
> "Ahmed SHEBL" <(E-Mail Removed)> skrev i melding
> news:%(E-Mail Removed)...
> > Hi
> >
> > I had a collegue who told me once a way to dtermine the number of the

rows
> > in a sheet of the workbook I am working at.
> > It is known that when you open a new workbook each sheet has maybe 65365

> or
> > something like that rows.
> >
> > MY QUESTION IS: HOW TO MAKE THE SHEET 1000 ROWS OR WHATEVER NUMBERS OF
> > ROWS I ONLY NEED?
> >
> > Thanks in Advance,
> >
> > Ahmed
> >

>
>



 
Reply With Quote
 
Harald Staff
Guest
Posts: n/a
 
      29th Mar 2007
Things are well, Bob, thank you. I spend far too little time here and I
really miss you guys.

Best wishes Harald

"Bob Umlas" <(E-Mail Removed)> skrev i melding
news:%(E-Mail Removed)...
> Hey, Harald -- how are you? You were/are missed! Hope things are well.
> Bob Umlas



 
Reply With Quote
 
Gord Dibben
Guest
Posts: n/a
 
      29th Mar 2007
Good to see you're still around.

Gord

On Thu, 29 Mar 2007 00:43:01 +0200, "Harald Staff" <(E-Mail Removed)>
wrote:

>Things are well, Bob, thank you. I spend far too little time here and I
>really miss you guys.
>
>Best wishes Harald
>
>"Bob Umlas" <(E-Mail Removed)> skrev i melding
>news:%(E-Mail Removed)...
>> Hey, Harald -- how are you? You were/are missed! Hope things are well.
>> Bob Umlas

>


 
Reply With Quote
 
Dave Peterson
Guest
Posts: n/a
 
      29th Mar 2007
Nope. There's no way to reduce the number of rows or columns in a worksheet.

You can hide them like the prodigal son Harald suggested or you could actually
use some code that won't let the user scroll too far right or too far down. But
that requires a macro.

If you want to try that:

Option Explicit
Sub auto_open()
With Worksheets("sheet1")
.ScrollArea = .Range("a1:f22").Address
End With
End Sub

Excel won't remember these settings after you close it and reopen the workbook
(that's why it's in auto_open).

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

=====
Personally, seeing all those columns doesn't bother me. I don't think it
bothers most excel users either. And if you're new to excel, then give it some
time and it won't bother you either <bg>.


Ahmed SHEBL wrote:
>
> Hi Harald,
>
> as I said in my first posting, I had a colleague who did that before in a
> prior job. and I left that place and worked for another place. I am sure he
> did it.
>
> There must be another way to work around that Harald. do u think you can
> help me on that
>
> by the way, I can see you met an old friend of your through my post. you owe
> me one ;-)
>
> Many thanks,
> Ahmed
>
> "Harald Staff" <(E-Mail Removed)> wrote in message
> news:%(E-Mail Removed)...
> > Hi Ahmed
> >
> > The number of rows and columns are fixed. Your workaround would be to hide
> > the ones you consider unneeded.
> >
> > HTH. Best wishes Harald
> >
> > "Ahmed SHEBL" <(E-Mail Removed)> skrev i melding
> > news:%(E-Mail Removed)...
> >> Hi
> >>
> >> I had a collegue who told me once a way to dtermine the number of the
> >> rows
> >> in a sheet of the workbook I am working at.
> >> It is known that when you open a new workbook each sheet has maybe 65365

> > or
> >> something like that rows.
> >>
> >> MY QUESTION IS: HOW TO MAKE THE SHEET 1000 ROWS OR WHATEVER NUMBERS OF
> >> ROWS I ONLY NEED?
> >>
> >> Thanks in Advance,
> >>
> >> Ahmed
> >>

> >
> >


--

Dave Peterson
 
Reply With Quote
 
Ahmed SHEBL
Guest
Posts: n/a
 
      30th Mar 2007
Hi Harald,

as I said in my first posting, I had a colleague who did that before in a
prior job. and I left that place and worked for another place. I am sure he
did it.

There must be another way to work around that Harald. do u think you can
help me on that

by the way, I can see you met an old friend of your through my post. you owe
me one ;-)

Many thanks,
Ahmed

"Harald Staff" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> Hi Ahmed
>
> The number of rows and columns are fixed. Your workaround would be to hide
> the ones you consider unneeded.
>
> HTH. Best wishes Harald
>
> "Ahmed SHEBL" <(E-Mail Removed)> skrev i melding
> news:%(E-Mail Removed)...
>> Hi
>>
>> I had a collegue who told me once a way to dtermine the number of the
>> rows
>> in a sheet of the workbook I am working at.
>> It is known that when you open a new workbook each sheet has maybe 65365

> or
>> something like that rows.
>>
>> MY QUESTION IS: HOW TO MAKE THE SHEET 1000 ROWS OR WHATEVER NUMBERS OF
>> ROWS I ONLY NEED?
>>
>> Thanks in Advance,
>>
>> Ahmed
>>

>
>


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Determine if a sheet is protected? Robert Crandal Microsoft Excel Programming 4 19th Jan 2010 01:55 AM
Line count in 1 sheet to determine paste range in 2nd sheet. wpreqq99@yahoo.com Microsoft Excel Programming 0 26th Sep 2008 08:43 PM
Determine if the sheet has been changed Erik Wikström Microsoft Excel Programming 2 12th Dec 2007 04:00 PM
How do I create a sheet of Avery file folder labels-sheet size 836 =?Utf-8?B?TWFuaWM2Nw==?= Microsoft Word Document Management 7 19th Mar 2005 09:08 PM
Printing a word 2000 Letter size newsletter on Tabloid size sheet Hadi Microsoft Word Document Management 1 17th Sep 2003 04:57 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 09:22 AM.