Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default macro help with print lables

I suggest you repost the message to the Programming newsgroup - I am still

learning VBA. Shorten the message to something along the lines of:

I have an Excel worksheet with a packing list on sheet1

ITEM NO. QTY. PART NO.

1 5 Oven Base

2 36 Default

3 29 Oven Internal Wall

etc

I need a macro with these specs

For each item

a) copy the Part No data (column C) to column B on Sheet2. This is to be

done N times where N = value in column B of sheet1

(e.g. 5 times for first item filling B1, B2, B3, B4 and B5 of Sheet2 with

Oven Base)

b) print Sheet2

c) delete data on Sheet2 leaving formatting

next item in list.

I have looked at using Words mail merge but this isn,'t what i'm really
after
--
----------------------------
Couray Sheetmetal
9 Apsley Plc.
Seaford
Melbourne.
Australia.
PH 03 97861609

---------------------------


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default macro help with print lables

Sub PrintSheet()
Dim i As Integer
Dim p As Integer
Dim Ws1 As Worksheet
Dim Ws2 As Worksheet


Set Ws1 = Sheets("sheet1")
Set Ws2 = Sheets("Sheet2")
For i = 1 To Ws1.Range("b" & Ws1.Range("b65536").End(xlUp).Row) Ste
1
For p = 1 To Ws1.Cells(i, "b").Value Step 1
Ws2.Cells(p, "b").Value = Ws1.Cells(i, "c").Value
Next p
Ws2.PrintOut Copies:=1, Collate:=True
Ws2.Cells.ClearContents
Next i
End Su

--
Message posted from http://www.ExcelForum.com

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
print mailing lables from Excel file jim Barefield Excel Discussion (Misc queries) 4 May 6th 10 12:39 AM
How to print vendor file lables from an excell file Sue Excel Discussion (Misc queries) 2 June 23rd 09 03:41 AM
how to print lables from worksheet? Ross New Users to Excel 2 December 2nd 08 01:31 PM
print lables from excel names and address list moonraker Excel Discussion (Misc queries) 1 June 22nd 08 10:00 PM
Print Column Heads WITHOUT Excel Column Lables Sarah E Excel Worksheet Functions 1 June 19th 08 07:06 PM


All times are GMT +1. The time now is 03:47 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"