How to define a "from this row to the bottom of the spreadsheet"range?

  • Thread starter Thread starter =?ISO-8859-1?Q?Ney_Andr=E9_de_Mello_Zunino?=
  • Start date Start date
?

=?ISO-8859-1?Q?Ney_Andr=E9_de_Mello_Zunino?=

Hello.

In a spreadsheet, I have a formula which refers to the values of a
column ('C', for instance). The first line of that column is a title, so
I currently use a range that begins with 'C2'. There is no total at the
bottom of the column. All cells that follow the last value are blank.

The problem is that the number of values on that column grows
periodically. As of now, I am using an arbitrary high value to make up
the range in the formula, e.g. 'C2:C1000'. The question is: how can I
specify that range without using a magic number? In other words, how
does one define a range that means: from this row to the bottommost row.

Thank you,
 
Ney André de Mello Zunino wrote...
....
specify that range without using a magic number? In other words, how
does one define a range that means: from this row to the bottommost row.
....

You could define a name like C.HD ([col] C here down) referring to the
formula

=INDEX($C:$C,N(ROW())):INDEX($C:$C,ROWS($C:$C))
 
Harlan Grove wrote...
....
=INDEX($C:$C,N(ROW())):INDEX($C:$C,ROWS($C:$C))

The N call was unnecessary. Simplify it to

=INDEX($C:$C,ROW()):INDEX($C:$C,ROWS($C:$C))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top