Change row and column when copying formula

  • Thread starter Thread starter benjampm
  • Start date Start date
B

benjampm

I want to fill down a formula where the row and column both incriment by one:

=CONCATENATE(FK6,G6,GQ6)
=CONCATENATE(FL7,H7,GR7)

How can I do this?
 
tested and works

=INDIRECT("R"&ROW()&"C"&199+ROW()-6,0)&INDIRECT("R"&ROW()&"C"&7+ROW()-6,0)&INDIRECT("R"&ROW()&"C"&167+ROW()-6,0)

This is assuming that the first equation is put on row 6... and copied
down....
 
The 199 should be in the third indirect and the 167 should be in the first
indirect. Sorry about that....
 

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