Need help to link Cell to a seperate sheet

spycein

Board Regular
Joined
Mar 8, 2014
Messages
135
Office Version
  1. 365
Platform
  1. Windows
Hello Everyone,
Need help to link data from one sheet to a different sheet.
For example, i have following data in Sheet 1 and Sheet 2:
Sheet1
Cell B1 Value = A
Cell B2 Value = B
Cell B3 Value = C
Cell B4 Value = D
Cell B5 Value = E
Cell B6 Value = F
Cell B7 Value = G
Cell B8 Value = H
Cell B9 Value = I
Cell B10 Value = J

Sheet 2
Cell B1 Value = 1
Cell B2 Value = 2
Cell B3 Value = 3
Cell B4 Value = 4
Cell B5 Value = 5
Cell B6 Value = 6
Cell B7 Value = 7
Cell B8 Value = 8
Cell B9 Value = 9
Cell B10 Value = 10

I need to copy the above data from both the sheets to a new sheet i.e. in Sheet 3 in following manner

Sheet 3 ( Need help to link data as following manner)

Cell B1 Value = A
Cell B2 Value = 1
Cell B3 Value = B
Cell B4 Value = 2
Cell B5 Value = C
Cell B6 Value = 3
Cell B7 Value = D
Cell B8 Value = 4
Cell B9 Value = E
Cell B10 Value = 5
Cell B11 Value = F
Cell B12 Value = 6
Cell B13 Value = G
Cell B14 Value = 7
Cell B15 Value = H
Cell B16 Value = 8
Cell B17 Value = I
Cell B18 Value = 9
Cell B19 Value = J
Cell B20 Value = 10

Hope i explained my query properly.
Many thanks in advance.
Best Regards
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Book1
B
1A
22
3B
43
5C
64
7D
85
9E
100
Sheet3
Cell Formulas
RangeFormula
B1:B10B1=INDIRECT("Sheet"&MOD(ROW()+1,2)+1&"!B"&(INT(ROW()/2)+1),1)
 
Upvote 0
@Habtest Thank you so much.
I have a small query.. row number 2 value starts with 2 instead of 1. could you please help on that.
Best Regards,
 
Upvote 0
@Habtest Thank you so much.
I have a small query.. row number 2 value starts with 2 instead of 1. could you please help on that.
Best Regards,
Sorry for a mistake, should be:
Excel Formula:
=INDIRECT("Sheet"&MOD(ROW()+1,2)+1&"!B"&INT((ROW()+1)/2),1)
 
Upvote 0
Solution

Forum statistics

Threads
1,213,535
Messages
6,114,194
Members
448,554
Latest member
Gleisner2

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