ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Built-in Excel constant for maximum number of rows, for columns? (https://www.excelbanter.com/excel-programming/349792-built-excel-constant-maximum-number-rows-columns.html)

Howard Kaikow

Built-in Excel constant for maximum number of rows, for columns?
 
Are there built-in Excel constants for maximum number of rows, for columns?



Peter T

Built-in Excel constant for maximum number of rows, for columns?
 
AFAIK no and don't see how a constant would be viable. The number of rows &
columns in a sheet is version dependant. Although versions 8-11 have 65536 x
256, earlier versions have less and I understand XL12 will have considerably
more.

nRows = ActiveSheet.Rows.Count
nCols = ActiveSheet.Columns.Count

Regards,
Peter T


"Howard Kaikow" wrote in message
...
Are there built-in Excel constants for maximum number of rows, for

columns?





Bob Phillips[_6_]

Built-in Excel constant for maximum number of rows, for columns?
 
Yes, Rows.Count and Columns.Count

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"Howard Kaikow" wrote in message
...
Are there built-in Excel constants for maximum number of rows, for

columns?





JE McGimpsey

Built-in Excel constant for maximum number of rows, for columns?
 
Note that these really aren't' constants, but are properties of the Rows
and Columns collection (which are child objects of Worksheet - not
qualifying them defaults to the ActiveSHeet).

Since the number of rows in a worksheet is version dependent, using this
method is superior to constants, since Rows.Count will return the number
of rows in the activesheet for XL4 (16757), and XL97-04 (65536) and will
return over 1,000,000 for XL12.

In article ,
"Bob Phillips" wrote:

Yes, Rows.Count and Columns.Count

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"Howard Kaikow" wrote in message
...
Are there built-in Excel constants for maximum number of rows, for

columns?


Howard Kaikow

Built-in Excel constant for maximum number of rows, for columns?
 
Ayup, I should have said "property", instead of "constant".

--
http://www.standards.com/; See Howard Kaikow's web site.
"JE McGimpsey" wrote in message
...
Note that these really aren't' constants, but are properties of the Rows
and Columns collection (which are child objects of Worksheet - not
qualifying them defaults to the ActiveSHeet).

Since the number of rows in a worksheet is version dependent, using this
method is superior to constants, since Rows.Count will return the number
of rows in the activesheet for XL4 (16757), and XL97-04 (65536) and will
return over 1,000,000 for XL12.

In article ,
"Bob Phillips" wrote:

Yes, Rows.Count and Columns.Count

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"Howard Kaikow" wrote in message
...
Are there built-in Excel constants for maximum number of rows, for

columns?





All times are GMT +1. The time now is 05:12 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com