Condense Macro and Loop

dracron

New Member
Joined
Jan 10, 2014
Messages
32
Hello to all. If anyone could help I would be much appricative!!
I would like for this macro to continue to copy and past data from one work sheet into another, but I am not sure how looping works.

I put together a quick macro of what I basically trying to do. A2 will change to A3, A4, A5 and so on butB1:AP1 will remain the same, but I only want it to copy and past over the info so long as the column in A has data.

Sub testestest()
'
' testestest Macro
'
'
Sheets("Unconverted").Select
Range("A2").Select
Selection.Copy
Sheets("Converted").Select
Range("A2:A42").Select
ActiveSheet.Paste
Sheets("Unconverted").Select
Range("B1:AP1").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Converted").Select
Range("B2").Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
ActiveWindow.SmallScroll Down:=20
End Sub
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.

Forum statistics

Threads
1,215,473
Messages
6,125,018
Members
449,203
Latest member
tungnmqn90

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