Moving data to another column

sergemaster

New Member
Joined
Feb 18, 2011
Messages
5
Hey guys,
Sergmaster here, and I have one more Excel Q that needs an A to an issue that I've been working on.

What I need to do is to MOVE the contents of every third cell once again located in in column C decending, and move it into column B decending.

My first cell is C3 and ending at C28206. All that data needs to be moved over to B3 and ending at B28206.

Cheers,
Serge
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
Code:
Sub MoveInThrees()
'C3 and ending at C28206
Dim A As Long
With ActiveSheet
    For A = 3 To 28206 Step 3
        .Range("C" & A).Cut .Range("B" & A)
    Next
End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,224,503
Messages
6,179,134
Members
452,890
Latest member
Nikhil Ramesh

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