Using = to reference another tab

mickyd67

Board Regular
Joined
Jul 13, 2011
Messages
70
Office Version
  1. 365
Platform
  1. Windows
Hi All,

I hope I explain this one correctly.

I have Tab 1 with 100 item codes in Column A - running A1 to A100

In Tab 2 I want to reference these item codes, but I want to do that with other data - so it's every 5 rows I want the reference (i.e. item code) to be visible in, and then I'll merge / centre the data.

How do I do that? Is it Offset, or something? I can't figure it out.

Thanks,
 

Attachments

  • Capture.PNG
    Capture.PNG
    9.6 KB · Views: 6

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
You have described what your data look likes like in "Tab 1", but you have given no clue at to what your result should look like in "Tab 2". Also it looks like your item codes are in column B, not A.

Assuming you want consecutive rows on "Tab 2" referencing the items, then you want this for the first data row on "Tab 2" and copy down.

Excel Formula:
=INDEX('Tab 1'!A:A,(ROW(A1)-1)*4+1)

Result will look like this:

$scratch.xlsm
A
1Items
2100001111
3100002222
4100003333
Sheet7
 
Upvote 0
Thanks for the reply.

I’m showing Tab 2 in that image. That’s what the 2nd tab layout looks like - column B is referencing column A1, A2 etc
 
Upvote 0
Oh, so the situation is backwards.

Excel Formula:
=INDEX('Tab 1'!A:A,((ROW()-1)/4)+1)
 
Upvote 0

Forum statistics

Threads
1,214,940
Messages
6,122,356
Members
449,080
Latest member
Armadillos

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