G
George W. Barrowcliff
How can I find the last nonblank value in a column of numbers?
TIA
GWB
TIA
GWB
Thanks, for the quick responses. Does exactly what I needed to do.
Aladin Akyurek said:That puts efficiency in back seat. <g>
Thanks, for the quick responses. Does exactly what I needed to do.
--
[1] The SumProduct function should implicitly coerce the truth values to
their Excel numeric equivalents.
[2] The lookup functions should have an optional argument for the return
value, defaulting to #N/A in its absence.
Sandy said:Aladin,
I accept that your use of LOOKUP is more efficient than mine, (well my
plagiarised version really, probably the only original thought I have had
was, "I wonder if there is anything on the net about Excel?"), for one thing
'mine' used two function calls. So that I can expand my understanding of
how XL works, do you know if LOOKUP checks all 65,536 rows or just the used
range? If it does check all rows, is it still faster than a limited range -
say 1,000 rows. I other words is it 65 times faster?
Aladin Akyurek said:LOOKUP() effects a binary search (see:
http://www.nist.gov/dads/HTML/binarySearch.html), thus very fast.