Import non-concurrent cell values from SheetA into concurrent cells on SheetB

skinnea

Board Regular
Joined
Mar 15, 2003
Messages
135
Office Version
  1. 365
Platform
  1. Windows
Hi - I have a spreadsheet with two tabs:
  1. 'all months'
  2. 'summary'
On the 'all months' tab, every 23rd cell in row R has a £££ amount in it. This number is calculated from various parts of the other 22 cells, each chunk of which represents a month.
I'd like to pull those specific amounts into the 'summary' tab and position them in a table of concurrent months.

I could hard-code each cell references (A1='all months'!$R$6 , B1='All months'!$AN$6 , etc) but I'm sure there must be a smarter way that allows me to drag the formula across my 'summary' table?

And I'm sure it's to do with OFFSET or INDEX ... but I'm not smart enough to work it out. Could someone help me please...?
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
May be in A1:
Code:
=INDIRECT("'All months'!"&ADDRESS(ROW(1:1)+5,COLUMN($R:$R)+(COLUMN(A:A)-1)*22))
 
Upvote 0
What version of Excel are you using?

I suggest that you update your Account details (or click your user name at the top right of the forum) so helpers always know what Excel version(s) & platform(s) you are using as the best solution often varies by version. (Don’t forget to scroll down & ‘Save’)

A couple of other options that are not volatile
Excel Formula:
=INDEX('all months'!$R$6:$ZZ$6,COLUMNS($A1:A1)*22-21)
or depending on version
Excel Formula:
=INDEX($R$6:$ZZ$6,SEQUENCE(,10,,22))
 
Upvote 0
Solution
What version of Excel are you using?

I suggest that you update your Account details (or click your user name at the top right of the forum) so helpers always know what Excel version(s) & platform(s) you are using as the best solution often varies by version. (Don’t forget to scroll down & ‘Save’)
Updated it (it's 365 btw) ?

And your formula sorted it, thank you!!
 
Upvote 0
Glad we could help & thanks for the feedback.

Thanks also for updating your profile. (y)
 
Upvote 0

Forum statistics

Threads
1,214,990
Messages
6,122,626
Members
449,093
Latest member
catterz66

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top