Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Quick question. How do I get the value of the bottom cell in a certain
column (actually always column A)? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
use match to find the row of any number larger than possible in your column
and index to give you the value in that row. Use "zzzzzzzzzz" for text. =INDEX(A:A,MATCH(99999999999999,A:A)) -- Don Guillett SalesAid Software wrote in message ups.com... Quick question. How do I get the value of the bottom cell in a certain column (actually always column A)? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Oops, forgot to mention that it should be in VBA, sorry about that...
Example: Bollard X Coord Y Coord Z Coord m m m A -10 4 -1 B -8 4 -1 C 7 4 -1 D 9 4 -1 E 11 4 -1 The returned value should be "E" (in VBA) |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sub findlastvalue()
lr = Cells(Rows.Count, "a").End(xlUp).Row MsgBox Cells(lr, "a") End Sub -- Don Guillett SalesAid Software "JaMark" wrote in message oups.com... Oops, forgot to mention that it should be in VBA, sorry about that... Example: Bollard X Coord Y Coord Z Coord m m m A -10 4 -1 B -8 4 -1 C 7 4 -1 D 9 4 -1 E 11 4 -1 The returned value should be "E" (in VBA) |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
what about the used property?
Don Guillett wrote: Sub findlastvalue() lr = Cells(Rows.Count, "a").End(xlUp).Row MsgBox Cells(lr, "a") End Sub -- Don Guillett SalesAid Software "JaMark" wrote in message oups.com... Oops, forgot to mention that it should be in VBA, sorry about that... Example: Bollard X Coord Y Coord Z Coord m m m A -10 4 -1 B -8 4 -1 C 7 4 -1 D 9 4 -1 E 11 4 -1 The returned value should be "E" (in VBA) |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
And what should be written in the parentheses when I want to use the
function? |
#8
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If you mean usedrange, OP asked for col A
-- Don Guillett SalesAid Software wrote in message oups.com... what about the used property? Don Guillett wrote: Sub findlastvalue() lr = Cells(Rows.Count, "a").End(xlUp).Row MsgBox Cells(lr, "a") End Sub -- Don Guillett SalesAid Software "JaMark" wrote in message oups.com... Oops, forgot to mention that it should be in VBA, sorry about that... Example: Bollard X Coord Y Coord Z Coord m m m A -10 4 -1 B -8 4 -1 C 7 4 -1 D 9 4 -1 E 11 4 -1 The returned value should be "E" (in VBA) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I reference contents of a cell at the bottom of a column? | Excel Worksheet Functions | |||
show last used cell in a column at the bottom of column. | Excel Worksheet Functions | |||
Find the bottom cell that contains a specific val in a range? | Excel Worksheet Functions | |||
dislike jump bottom of column by double-clicking the bottom of cel | Excel Discussion (Misc queries) | |||
Shortcut to move to bottom (last) cell in a column | Excel Discussion (Misc queries) |