ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Last cell in column (https://www.excelbanter.com/excel-programming/273002-last-cell-column.html)

Don A

Last cell in column
 
I wrote a macro that does this as below:
' EndDown Macro
Sub EndDown()
If Selection Is Nothing Then Exit Sub
State = IsEmpty(ActiveCell)
For rw = ActiveCell.Row + 1 To Application.Rows.Count - 1
If IsEmpty(Cells(rw, ActiveCell.Column)) < State Then
Exit For
Next rw
ActiveWindow.ScrollRow = rw
Cells(rw, ActiveCell.Column).Activate
End Sub

-----Original Message-----
Searching for a command that will show me the LAST value

in a column. Not the
largest, but the last. Any help0 greatly appreciated.
.



All times are GMT +1. The time now is 07:36 PM.

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