ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Displayed Collumns and Rows (https://www.excelbanter.com/excel-programming/273241-displayed-collumns-rows.html)

John Tripp[_2_]

Displayed Collumns and Rows
 
I would like to find the actual rows displayed in the
activesheet. Any code examples would be greatly
appreciated.

Thanks

John Wilson

Displayed Collumns and Rows
 
John,

Try these:

ActiveWindow.VisibleRange.Rows.Count
ActiveWindow.VisibleRange.Columns.Count

John

John Tripp wrote:

I would like to find the actual rows displayed in the
activesheet. Any code examples would be greatly
appreciated.

Thanks



Ron de Bruin

Displayed Collumns and Rows
 
Not sure if I understand you?

Excel 97 and up have 65536 rows

' rows in sheet
MsgBox Rows.Count

' this count the rows in the usedrange(a1:till the last cell)
' is not always correct
MsgBox ActiveSheet.UsedRange.Rows.Count

Or the CurrentRegion
MsgBox Range("A1").CurrentRegion.Rows.Count

Or do you mean visible rows??
MsgBox Columns("A:A").SpecialCells(xlCellTypeVisible).Cel ls.Count

--
Regards Ron de Bruin
(Win XP Pro SP-1 XL2002 SP-2)
www.rondebruin.nl



"John Tripp" wrote in message ...
I would like to find the actual rows displayed in the
activesheet. Any code examples would be greatly
appreciated.

Thanks





All times are GMT +1. The time now is 02:48 PM.

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