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

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
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,214,956
Messages
6,122,465
Members
449,085
Latest member
ExcelError

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