Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am trying to find the last entered value in a list of basic weight data. I
enter new numeric values to the list on a daily basis, but would like to always show the last entered value in another cell also. Please help ! |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
Could the following be your solution : http://groups.google.com/group/micro...8 90840b7e454 HTH Cheers Carim |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thx Carim,
That doesn't seem to help or work, after trying those formulas, I didn't give enough info though, the list also contains zero values, that I want to exclude from my result, e.g. 0 300 250 350 375 0 0 would always return 375, as the last value in the list (which will also always be positive) it is also the value I need, not the position. Regards, IvanM "Carim" wrote: Hi, Could the following be your solution : http://groups.google.com/group/micro...8 90840b7e454 HTH Cheers Carim |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() Could Max() function help ... =Max(A2:A100) Carim |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
With an array function :
=INDEX(A1:A10,MAX((A1:A100)*(ROW(A1:A10)))-ROW(A1:A10)+1) Control+Shift+Enter instead of Enter to accept formula HTH Cheers Carim |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=LOOKUP(2,1/(A2:A100<""),A2:A100)
set A100 as high as you are ever likely to need -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "IvanM" wrote in message ... I am trying to find the last entered value in a list of basic weight data. I enter new numeric values to the list on a daily basis, but would like to always show the last entered value in another cell also. Please help ! |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks for the assistance Carim, but Max will only give me the largest value
if I remember correctly. Thanks also to Bob, I changed the "" to 0, which ignored all the zero values in my list, and it worked ! Thanks again, truly appreciated. "Bob Phillips" wrote: =LOOKUP(2,1/(A2:A100<""),A2:A100) set A100 as high as you are ever likely to need -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "IvanM" wrote in message ... I am trying to find the last entered value in a list of basic weight data. I enter new numeric values to the list on a daily basis, but would like to always show the last entered value in another cell also. Please help ! |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
(If you want to ignore 0, then just try
=LOOKUP(2,1/A1:A1000,A1:A1000) -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "IvanM" wrote in message ... Thanks for the assistance Carim, but Max will only give me the largest value if I remember correctly. Thanks also to Bob, I changed the "" to 0, which ignored all the zero values in my list, and it worked ! Thanks again, truly appreciated. "Bob Phillips" wrote: =LOOKUP(2,1/(A2:A100<""),A2:A100) set A100 as high as you are ever likely to need -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "IvanM" wrote in message ... I am trying to find the last entered value in a list of basic weight data. I enter new numeric values to the list on a daily basis, but would like to always show the last entered value in another cell also. Please help ! |
#9
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Bob,
In case you are interested, I have started my own thread (LOOKUP) based on this. I have discovered something interesting but quite lost. By the way, thank you for explaining global naming. Epinn "Bob Phillips" wrote in message ... (If you want to ignore 0, then just try =LOOKUP(2,1/A1:A1000,A1:A1000) -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "IvanM" wrote in message ... Thanks for the assistance Carim, but Max will only give me the largest value if I remember correctly. Thanks also to Bob, I changed the "" to 0, which ignored all the zero values in my list, and it worked ! Thanks again, truly appreciated. "Bob Phillips" wrote: =LOOKUP(2,1/(A2:A100<""),A2:A100) set A100 as high as you are ever likely to need -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "IvanM" wrote in message ... I am trying to find the last entered value in a list of basic weight data. I enter new numeric values to the list on a daily basis, but would like to always show the last entered value in another cell also. Please help ! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
formula to find the data of a next cell in a list | Excel Discussion (Misc queries) | |||
Find name in list and get dept # enter dept # on work sheet | Excel Worksheet Functions | |||
Formula to find highest alphabetic name in a list of names | Excel Worksheet Functions | |||
Find all from a list | Excel Discussion (Misc queries) | |||
How do I find out what items are in one list but not in another l. | Excel Discussion (Misc queries) |