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 create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.

ravishankar

Well-known Member
Joined
Feb 23, 2006
Messages
3,566
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

Peter_SSs

MrExcel MVP, Moderator
Joined
May 28, 2005
Messages
59,294
Office Version
  1. 365
Platform
  1. Windows
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,191,191
Messages
5,985,204
Members
439,947
Latest member
fabiannic

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
Top