ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Need to Find End Value of a Column with Unknown End Range (https://www.excelbanter.com/excel-programming/275162-need-find-end-value-column-unknown-end-range.html)

Tricia[_3_]

Need to Find End Value of a Column with Unknown End Range
 
I have a need to find the Last Value of a Column where the
max rows varies from day to day. Does anyone know how
to auto find this end value of the column via code without
know how many rows will be in the column?

Bob Umlas[_3_]

Need to Find End Value of a Column with Unknown End Range
 
Via code (assuming col c):
LastVal = Range("C65536").end(xlup).value

Via cell formula:
ctrl/shift/enter:
=INDEX(C:C,MAX((C1:C20000<"")*row(1:20000))

-----Original Message-----
I have a need to find the Last Value of a Column where

the
max rows varies from day to day. Does anyone know how
to auto find this end value of the column via code

without
know how many rows will be in the column?
.


Tom Ogilvy

Need to Find End Value of a Column with Unknown End Range
 
If there are only numbers in the column or at least the last filled cell
will be a number, this will be a much faster formula than an array formula:

=INDEX(D:D,MATCH(9.99999999999999E+307,D:D,1),1)

--
Regards,
Tom Ogilvy


Bob Umlas wrote in message
...
Via code (assuming col c):
LastVal = Range("C65536").end(xlup).value

Via cell formula:
ctrl/shift/enter:
=INDEX(C:C,MAX((C1:C20000<"")*row(1:20000))

-----Original Message-----
I have a need to find the Last Value of a Column where

the
max rows varies from day to day. Does anyone know how
to auto find this end value of the column via code

without
know how many rows will be in the column?
.





All times are GMT +1. The time now is 01:56 PM.

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