Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
How would I do a lookup in a row with 4 values:
0 4.8 3.2 0 to find the first value that is greater than 0? The answer should be 4.8 but what would the formula look like? Thanks, Harold |
#2
![]() |
|||
|
|||
![]()
I hope someone can suggest something cleaner, but I think this will work...
If your values are in row 1: =IF(A10,A1,INDEX(1:1,1+MATCH(0.0000000001,1:1,1)) ) "Harold Good" wrote: How would I do a lookup in a row with 4 values: 0 4.8 3.2 0 to find the first value that is greater than 0? The answer should be 4.8 but what would the formula look like? Thanks, Harold |
#3
![]() |
|||
|
|||
![]()
Thanks for your help bpelzter. Biff did suggest this one, both yours and his
work well. Thanks for your help. Harold ============ Try this: Entered as an array using the key combo of CTRL,SHIFT,ENTER: =INDEX(A4:D4,MATCH(TRUE,A4:D40,0)) A little more robust: =INDEX(A4:D4,MATCH(1,(ISNUMBER(A4:D4))*(A4:D40),0 )) Biff ======================= "bpeltzer" wrote in message ... I hope someone can suggest something cleaner, but I think this will work... If your values are in row 1: =IF(A10,A1,INDEX(1:1,1+MATCH(0.0000000001,1:1,1)) ) "Harold Good" wrote: How would I do a lookup in a row with 4 values: 0 4.8 3.2 0 to find the first value that is greater than 0? The answer should be 4.8 but what would the formula look like? Thanks, Harold |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Another way to lookup data | Excel Worksheet Functions | |||
lookup more than one cell | Excel Worksheet Functions | |||
Lookup Vector > Lookup Value | Excel Worksheet Functions | |||
Lookup function w/Text and Year | Excel Worksheet Functions | |||
double lookup, nest, or macro? | Excel Worksheet Functions |