Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 29
Default Building a shipping label program

I want to build a template that when the user keys in a customer number, it
fills in the template with the shipping address and allows them to ask how
many labels and have them print on our label printer. I would love the
general outline on how to do this.

Thanks much
Greg

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Building a shipping label program

Data ValidationList dropdown menu for the entry of the number.

VLOOKUP tables formula(s) for the filling-in of addresses.

You would need VBA to use an InputBox to collect the number of labels then
print that many.

example code.

Sub print_labels()
Dim numlabs As Integer
numlabs = InputBox("Enter number of labels to print")
ActiveSheet.Range("C4:F7").PrintOut Copies:=numlabs
End Sub


Gord Dibben MS Excel MVP

On Wed, 10 Dec 2008 14:08:03 -0800, Lost in excel
wrote:

I want to build a template that when the user keys in a customer number, it
fills in the template with the shipping address and allows them to ask how
many labels and have them print on our label printer. I would love the
general outline on how to do this.

Thanks much
Greg


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
Extracting data from a sku for shipping snd679 Excel Worksheet Functions 2 June 5th 08 03:28 AM
EXCEL WITH BARTENDER LABEL PROGRAM BRANDON Excel Discussion (Misc queries) 1 March 2nd 07 03:41 AM
shipping / receiving log template macnichol Excel Discussion (Misc queries) 0 July 19th 06 03:55 PM
Calculating shipping costs LPJR New Users to Excel 3 November 30th 05 05:16 AM
shipping costs using if then impression Excel Worksheet Functions 2 May 7th 05 11:34 PM


All times are GMT +1. The time now is 05:19 AM.

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

About Us

"It's about Microsoft Excel"