Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
What would be the most efficient way of returning the value of the first
NON-ZERO value in a column. THANK YOU |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=INDEX(A1:A20,MIN(IF(A1:A20<"",ROW(A1:A20))))
which is an array formula, it should be committed with Ctrl-Shift-Enter, not just Enter. Excel will automatically enclose the formula in braces (curly brackets), do not try to do this manually. When editing the formula, it must again be array-entered. -- --- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "Ben" wrote in message ... What would be the most efficient way of returning the value of the first NON-ZERO value in a column. THANK YOU |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() Ben เขียน: What would be the most efficient way of returning the value of the first NON-ZERO value in a column. THANK YOU Try this: =INDEX(B2:B19,MATCH(1,(B2:B190)+0,0)) Ctrl+Shif+Enter |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() Ben เขียน: What would be the most efficient way of returning the value of the first NON-ZERO value in a column. THANK YOU If A2:A11 contain your data. B2 =INDEX(A2:A11,MATCH(1,(A2:A110)+0,0)) Ctrl+Shift+Enter Hope this helps. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
LOOKUP and return the column heading for IF/THEN return for False | Excel Discussion (Misc queries) | |||
Return the column | Excel Worksheet Functions | |||
Lookup in one column, and return value from another column | Excel Worksheet Functions | |||
Search one column and return value from next column | Excel Discussion (Misc queries) | |||
How to return value from last column w/value? | Excel Worksheet Functions |