Need a macro

OONEDOO

New Member
Joined
Jul 12, 2007
Messages
6
I need a macro that will copy data from column C and paste the data sixteen cells across but if the cell is already populated I need it to move seventeen cell and if that is populated over again and so on and so.
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
Hi
Paste the following codes in the macro window(Alt F11)

Code:
sub copy_columnC()
x= cells(rows.count,3).end(xlUp).row
y= cells(2,columns.count).end(xlToLeft).column
a = "C1:C"& x
b= chr(y+1) & 1
Range(a).copy
Range(b).pastespecial
end sub

this works upto col Z only.
Ravi
 
Upvote 0
Maybe this?

<font face=Courier New><SPAN style="color:#00007F">Sub</SPAN> CopyRight()
    <SPAN style="color:#00007F">Dim</SPAN> newcol <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">Long</SPAN>
    
    newcol = Cells(1, Columns.Count).End(xlToLeft).Column + 1
    <SPAN style="color:#00007F">If</SPAN> newcol < 19 <SPAN style="color:#00007F">Then</SPAN> newcol = 19
    <SPAN style="color:#00007F">With</SPAN> Columns("C")
        .Copy Destination:=.Offset(, newcol - 3)
    <SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">With</SPAN>
<SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">Sub</SPAN></FONT>
 
Upvote 0

Forum statistics

Threads
1,215,043
Messages
6,122,816
Members
449,095
Latest member
m_smith_solihull

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