Dynamic Cell Range

  • Thread starter Thread starter theillknight
  • Start date Start date
T

theillknight

I want to use the index() function, but the size of my data continuousl
changes. I'm pretty sure I'll have to use some variation of th
indirect() function, but I'm not sure how to piece it all together.

Say I have data in A1:B3. Then, I insert more data so the rang
becomes A1:C5. How can I make it so that the array I reference expand
or shrinks to encompass all occupied cells
 
Hi
onw way:
=OFFSET($A$1,0,0,COUNTA($A:$A)-1)

for adjusting the row size
 
Thanks. The only problem I have with this formula is that if the cell
in the range aren't populated, then the formula won't encapsulate th
entire range. Is there an alternate method? Something using match(
perhaps
 

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