How to paste the same cell one tab over

Joined
Nov 20, 2015
Messages
1
Reaction score
0
I am building a spreadsheet where page 1 is a summary page of the next 7 tabs. Column D is a summary of the data entered on tab 2. Column E is a summary of tab 3 and so on down the spreadsheet. Tab 2-8 are all the same and I'd like to cut & paste the formula I wrote in column D to the corresponding columns, but when I do so, the formula that is pasted is one column to the right on the same tab, which means I have to do a lot of manual editing.

Is there an easy way to cut this formula: =tab2!V20 and make it paste =tab3!V20?

Thanks in advance for your help
 
Joined
Jun 9, 2016
Messages
32
Reaction score
5
In A1, =COLUMN(). Extend to the right until you have a number high enough to match your last Tab# sheet.
Copy and paste into B2:
=INDIRECT("'Tab"&B$1&"'!"&"A"&ROW(A1))
Fill right and down with the formula until you account for all your tabs and all data records. New tabs will be easy to account for as long as you stick with the same tab-naming convention.​
 

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

Top