Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have a formula where one of the components is the last number in a column.
I need to know how to always call the last value in a column that will be added to every day. -- Don Rountree |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
One way:
=LOOKUP(100^10,A:A) Biff "Don" wrote in message ... I have a formula where one of the components is the last number in a column. I need to know how to always call the last value in a column that will be added to every day. -- Don Rountree |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thank you. Just so that I know, what does the 100^10 mean? If you don't
mind responding one more time. -- Don Rountree "T. Valko" wrote: One way: =LOOKUP(100^10,A:A) Biff "Don" wrote in message ... I have a formula where one of the components is the last number in a column. I need to know how to always call the last value in a column that will be added to every day. -- Don Rountree |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
It means 100 to the 10th power or 1 followed by 20 0s!
100,000,000,000,000,000,000 The way that LOOKUP works is if the lookup_value is greater than any value in the lookup_vector it will return the *last* value that is less than the lookup_value. There's a pretty good chance that no number in your range is greater than 100^10 so the result is the *last* number in the range. Basically, we use an arbitrary gigantic number like 100^10 when we don't know what the possible values might be. All you really need is a number that is greater than the highest number in your range. For example, suppose you were working with bowling scores. The highest possible bowling score is 300 so the highest possible number in your range can only be 300. So you'd only need a lookup_value of 301 for the formula to work: =LOOKUP(301,A:A) You could also do something like this: =LOOKUP(MAX(A:A)+1,A:A) But you really don't need to use another function call and calculation when it's easier to just use something like 301 or 100^10. Biff "Don" wrote in message ... Thank you. Just so that I know, what does the 100^10 mean? If you don't mind responding one more time. -- Don Rountree "T. Valko" wrote: One way: =LOOKUP(100^10,A:A) Biff "Don" wrote in message ... I have a formula where one of the components is the last number in a column. I need to know how to always call the last value in a column that will be added to every day. -- Don Rountree |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
what function do I use for excel to choose the 2nd highest number | Excel Worksheet Functions | |||
Choose Column in Calculation | New Users to Excel | |||
how i choose the column from a combo box | Excel Discussion (Misc queries) | |||
How can I choose top two numbers in a column? | Excel Worksheet Functions | |||
in excel, how do I choose a column and add 20% | Excel Worksheet Functions |