Linking Problem

teenkoo1978

New Member
Joined
Jan 22, 2014
Messages
3
how to link the cells which are in a row but data are followed by the blank cell to adjacent cell in a different work book
Let be the data Like Table-1
Table-1
ABCDEFG
1GoodBetterBestWrong
2

<tbody>
</tbody>
Now I have to get these data like Table-2 using formula or dragging method
Table-2
ABCDEFG
1GoodBetterBestWrong
2

<tbody>
</tbody>

Please help me in this regard
Thanking You
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
Hi - assuming there is always data followed by one blank cell and not varying numbers of blank cells in between the following will work.

Let's assume your data is on Sheet1 from cell A1 and you want to put the formula in cell A1 of Sheet2.

Code:
=OFFSET(Sheet1!$A$1, 0, (COLUMN(Sheet2!A1) - 1)*2)

Fill to right and it should work.

Hope this helps.
Dean.
 
Upvote 0

Forum statistics

Threads
1,214,967
Messages
6,122,503
Members
449,090
Latest member
RandomExceller01

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