Duplicating Multiple Cells

5SRopp

New Member
Joined
Sep 22, 2010
Messages
29
I have a column of data B2:B86, each cell contains different data. I use a copy-print macro to print each cell onto a label. I would like to print multiple labels for each cell, but I also want them to print in order. Is there a function that will allow me to add duplicates of each cell into this column of data?
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
what does your print macro look like? You should be able to modify it to print multiples and have it collate.
 
Upvote 0
Below is my copy-print macro.






Public Sub Copy_Label()
Application.ScreenUpdating = False
Dim i As Long
For i = 24 To 128
Sheets("Gasket_Cell").Range("C" & i).Copy Destination:=Sheets("Template").Range("A1:E10")
Sheets("Gasket_Cell").Range("B" & i).Copy Destination:=Sheets("Template").Range("A11:E12")
'Sheets("Literature").Range("C" & i).Copy Destination:=Sheets("Rack Sign").Range("D16:P20")
'Sheets("Crisperframes").Range("D" & i).Copy Destination:=Sheets("RackSign Template").Range("D37:P41")
'Sheets("B-Mart").Range("E" & i).Copy Destination:=Sheets("Rack Sign").Range("M32:P36")
'Sheets("B-Mart").Range("F" & i).Copy Destination:=Sheets("Rack Sign").Range("D37:P41")
ExecuteExcel4Macro "PRINT(1,,,1,,,,,,,,2,,,TRUE,,FALSE)"
Next i
Application.ScreenUpdating = True
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,896
Messages
6,122,132
Members
449,066
Latest member
Andyg666

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