how to address all cells in column excluding first n cells in that column

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi
how to address all cells in column excluding first n cells in that colum

Than

alekm
 
Do you mean put the actual cell address in the cell? If
so, try:

=IF(ROW()<n,"",ADDRESS(ROW(),COLUMN(),4))

where n = last row to exclude.

HTH
Jason
Atlanta, GA
 
Hi
something like
=SUM(OFFSET($A$1,10,0,1000))
to exclude the first 10 cells?
 
One way

OFFSET(A1,10-1,,65536-10+1)

will be A10:A65536, you can obviously replace

10-1 with 9 and 10+1 with 11
 

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