Instead of
below formula automatically adjusts to however many rows with data, instead of limiting to 5000 rows, or putting a million rows:
Tried to incorporate same solution into
with
and
but those are not correct, per Excel.
> What is the way to incorporate it correctly?
Excel Formula:
=COUNTA(A11:A5000)
Excel Formula:
=MATCH("zzz",A:A)-10
Tried to incorporate same solution into
Excel Formula:
=SUBTOTAL(103,A11:A5000)
Excel Formula:
=SUBTOTAL(103,(MATCH("zzz",A:A)-10))
Excel Formula:
=MATCH("zzz",SUBTOTAL(103,A:A))
> What is the way to incorporate it correctly?