Formula to Copy Data from one workbook and paste to every 2nd column in a different workbook

Sineadd

Board Regular
Joined
Apr 24, 2019
Messages
58
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
Hi All

I am hoping someone may be able to help me with the below

I am trying to figure out a formula that will allow me to take data from 1 spreadsheet and fill into every 2nd column on another

I want to copy data from lets say cell A1:C1 from one sheet and fill into cells A8, C8, E8 on another

Is it possible ?


Thanks Sinead:)

<colgroup><col width="64" span="7" style="width:48pt"> </colgroup><tbody>
</tbody>
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Hi Sinead,

Maybe something like that:

Code:
=IF(MOD(COLUMN(),2),INDEX(Sheet1!$A$1:$C$1,1,ROUNDUP(COLUMN()/2,0)),"")

Paste some random values into cells A1:C1 (Sheet1), go to another sheet, paste this formula into cell A8 and drag it across.

Cheers,
Justyna
 
Upvote 0

Forum statistics

Threads
1,216,095
Messages
6,128,795
Members
449,468
Latest member
AGreen17

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