View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
skatonni via OfficeKB.com skatonni via OfficeKB.com is offline
external usenet poster
 
Posts: 23
Default 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