Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am looking for a formula to find the first row in a column that
contains any data.I can do it with an array formula INDEX(rng,MATCH(TRUE,rng0,0)) but was curious if some can do it without using an array formula,perhaps with LOOKUP |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I expect there is something more elegant but I came up with this
=INDEX(A1:A7,SUMPRODUCT(MIN((A1:A7<"")*ROW(A1:A7) +(A1:A7="")*9999999))) best wishes -- Bernard V Liengme www.stfx.ca/people/bliengme remove caps from email "Rowland" wrote in message ... I am looking for a formula to find the first row in a column that contains any data.I can do it with an array formula INDEX(rng,MATCH(TRUE,rng0,0)) but was curious if some can do it without using an array formula,perhaps with LOOKUP |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
None array
=INDEX(A1:A9,COUNTIF(A1:A9,0)+1) the above formula works only the whole bunch of 0s on top rows not in the between of other the numbers "Rowland" wrote: I am looking for a formula to find the first row in a column that contains any data.I can do it with an array formula INDEX(rng,MATCH(TRUE,rng0,0)) but was curious if some can do it without using an array formula,perhaps with LOOKUP |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Is it possible? | Excel Worksheet Functions | |||
LOOKUP formula | Excel Worksheet Functions | |||
Populating a field based on lookup values | Excel Worksheet Functions | |||
Match then lookup | Excel Worksheet Functions | |||
How do I lookup a value in a array that is not in ascending order | Excel Worksheet Functions |