ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Rowkount (https://www.excelbanter.com/excel-programming/317374-rowkount.html)

RaY

Rowkount
 
I am trying to find the last row in a spreadsheet that contains data. The
range.count function stops when it hits a blank cell? Is there a quick and
dirty way to find the row# (or address) of the last cell in a worksheet that
contains data without worrying about blank cells?
--
Ray

quartz[_2_]

Rowkount
 
Try something like:

Dim strLastCell as String
strLastCell = Activesheet.Range("A65536").End(xlUp).Address

msgbox strLastCell

You can also change "Address" to "Row" if preferred. To get the next
available cell below the last used cell use:

Dim strLastCell as String
strLastCell = Activesheet.Range("A65536").End(xlUp).Offset(1, 0).Address

Hope this helps.


"Ray" wrote:

I am trying to find the last row in a spreadsheet that contains data. The
range.count function stops when it hits a blank cell? Is there a quick and
dirty way to find the row# (or address) of the last cell in a worksheet that
contains data without worrying about blank cells?
--
Ray


Glen Mettler[_4_]

Rowkount
 
This will count the last row with data and ignore blank cells in between.

LastRow = Cells(Rows.Count, 1).End(xlUp).Row

(where 1 is the first column. to check LastRow in column C you enter 3)

Glen

"Ray" wrote in message
...
I am trying to find the last row in a spreadsheet that contains data. The
range.count function stops when it hits a blank cell? Is there a quick and
dirty way to find the row# (or address) of the last cell in a worksheet
that
contains data without worrying about blank cells?
--
Ray





All times are GMT +1. The time now is 03:41 PM.

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