Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Is there an Excel funtion that calls the last value in a column? For example
I have a column that will be continuosly added to (through barcode scan) and I need the last value in that column to show up in a specific cell. It sounds so simple. there has to be a built in function, is there not? And if not can someone help me with the code? (I don't know VBA too well, but understand the logic) Thanks. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() =LOOKUP(2,1/(A1:A65535<""),A1:A65535) -- Regards, Peo Sjoblom "mike" wrote in message ... Is there an Excel funtion that calls the last value in a column? For example I have a column that will be continuosly added to (through barcode scan) and I need the last value in that column to show up in a specific cell. It sounds so simple. there has to be a built in function, is there not? And if not can someone help me with the code? (I don't know VBA too well, but understand the logic) Thanks. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
As long as there are no empty/blank cells within the range:
=INDEX(A:A,COUNTA(A:A)) -- Biff Microsoft Excel MVP "mike" wrote in message ... Is there an Excel funtion that calls the last value in a column? For example I have a column that will be continuosly added to (through barcode scan) and I need the last value in that column to show up in a specific cell. It sounds so simple. there has to be a built in function, is there not? And if not can someone help me with the code? (I don't know VBA too well, but understand the logic) Thanks. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
This works, thanks Peo.
"Peo Sjoblom" wrote: =LOOKUP(2,1/(A1:A65535<""),A1:A65535) -- Regards, Peo Sjoblom "mike" wrote in message ... Is there an Excel funtion that calls the last value in a column? For example I have a column that will be continuosly added to (through barcode scan) and I need the last value in that column to show up in a specific cell. It sounds so simple. there has to be a built in function, is there not? And if not can someone help me with the code? (I don't know VBA too well, but understand the logic) Thanks. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Return next non-Blank Cell in a Column ? | Excel Worksheet Functions | |||
Find a value in a table and return the cell or column reference | Excel Discussion (Misc queries) | |||
Return entry in column above/below cell | Excel Worksheet Functions | |||
Return activie cell indicator to column A next row down. | Excel Discussion (Misc queries) | |||
return cell reference from any column | Excel Worksheet Functions |