PDA

View Full Version : Solved: Copy & Paste in same cell



parttime_guy
01-28-2013, 10:01 AM
Hi All,

Just need a macro

Sheet 1: has information in Column A (1:100) (different Names)

Sheet 2: has a form

Need to copy information from Sheet1 Cell A1 and paste in Sheet 2 (B2) same cell then print the form and loop till information is over in Column A of sheet 1.

I have the code of the print

Sub printing()
Sheets("Form").PrintOut
End Sub


But... :help I am stuck with the task of copy pasting the information in the same cell and then loop.

Please help.
Thank & Regards

Bob Phillips
01-28-2013, 11:25 AM
With Worksheets("Sheet1")

For Each cell in .Range("A1:A100")

cell.Copy Worksheets("Form").Range(cell.Address)
Worksheets("Form").PrintOut
Next cell
End With

parttime_guy
01-28-2013, 07:44 PM
Hi XLD,

Thanks - ur code rocks
Works like a charm.
:bow: :friends: :beerchug:
Regards