![]() |
Read Last Inputted Value?
Lets say I have a range of cells: Value1 Value2 Value3 Value4 How could I get Excel to (worksheet function, or vb macro) to read a Range of cells, and simply tell me what is the last value in the list? So in this case it would return Value4. However, if I had Value1 Value2 it would return Value2. I know I could probably write a vb macro to look at each cell in a specified range, call ISBLANK(Cell) ... Soon as I get TRUE, I know the value I was looking for was the last ISBLANK I called. But, is there an easier way? THanks, Yin99 |
Read Last Inputted Value?
Sub FindLastCell() Dim cell as Range set cell = Activesheet.Range("A1").end(xldown) end sub -- jtp ------------------------------------------------------------------------ jtp's Profile: http://www.excelforum.com/member.php...o&userid=21132 View this thread: http://www.excelforum.com/showthread...hreadid=562712 |
Read Last Inputted Value?
If the values are in Column A starting in the first row
Sub lastValue() Range("A1").Select MsgBox Selection.End(xlDown).Value End Sub Yin99 wrote: Lets say I have a range of cells: Value1 Value2 Value3 Value4 How could I get Excel to (worksheet function, or vb macro) to read a Range of cells, and simply tell me what is the last value in the list? So in this case it would return Value4. However, if I had Value1 Value2 it would return Value2. I know I could probably write a vb macro to look at each cell in a specified range, call ISBLANK(Cell) ... Soon as I get TRUE, I know the value I was looking for was the last ISBLANK I called. But, is there an easier way? THanks, Yin99 -- Message posted via OfficeKB.com http://www.officekb.com/Uwe/Forums.a...mming/200607/1 |
All times are GMT +1. The time now is 07:28 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com