Copying Every Other Cell

Brabed

Board Regular
Joined
Oct 27, 2005
Messages
54
How would I copy every other cell in a column to another column?

Example- I want to only Copy A:1,A:3,A:5,A:7, etc to another column....

Thanks in advance.
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Actually, I want to revise my original question... I want to form two columns of data by copying data which alternates between two existing columns of data. Like this:

A B
54 35
85 47
65 85
23 56

becomes.....

C D
54 35
47 85
65 85
56 23

..in essence, I want every other row to swap data between columns.
 
Upvote 0
Enter these formulas in the columns:
Cell C1: =IF(MOD(ROW(),2)=1,A1,B1)
Cell D1: =IF(MOD(ROW(),2)=1,B1,A1)
and copy down for all rows.
 
Upvote 0

Forum statistics

Threads
1,219,162
Messages
6,146,661
Members
450,706
Latest member
LGVBPP

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