PC Review


Reply
Thread Tools Rate Thread

Creating delivery notes from a spreadsheet

 
 
=?Utf-8?B?S0M=?=
Guest
Posts: n/a
 
      4th Jul 2007
Does anyone know if it is possible to create a delivery note from a row on a
spreadsheet. One which automatically generate when a row is completed.
for example; a line has been completed and then a receipt is printed.
Any clues woudl be greatly appreciated.
 
Reply With Quote
 
 
 
 
Tim Williams
Guest
Posts: n/a
 
      4th Jul 2007
I would not do it "automatically" - otherwise you're going to be wasting a
lot of paper.
Better to allow the user to complete the information and then press a button
or something similar.

Just format a sheet for your delivery note and populate the spaces with the
information from the row on the other sheet.

Option Explicit

Sub Tester()
Dim s1, r

'skipped some error checking for selection type here...
Set r = Selection.Cells(1).EntireRow
Set shtNote = ThisWorkbook.Sheets("Note")

With shtNote
.Range("A2").Value = r.Cells(1).Value
.Range("B5").Value = r.Cells(2).Value
.Range("G4").Value = r.Cells(3).Value
'etc....
.PrintOut
End With


End Sub



Tim


"KC" <(E-Mail Removed)> wrote in message
news:6737D095-63DB-43DE-9445-(E-Mail Removed)...
> Does anyone know if it is possible to create a delivery note from a row on
> a
> spreadsheet. One which automatically generate when a row is completed.
> for example; a line has been completed and then a receipt is printed.
> Any clues woudl be greatly appreciated.



 
Reply With Quote
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
creating a delivery receipt in Outlook Tom Dice Microsoft Outlook 6 17th Aug 2009 01:05 PM
Sales orders and Delivery notes Jackie M Microsoft Access Database Table Design 0 16th Jun 2008 10:54 AM
delivery notes for e-mail in outlook 2003 =?Utf-8?B?TWFydGhpbnVz?= Microsoft Outlook 1 14th Sep 2006 11:38 AM
Excel hidden notes in spreadsheet =?Utf-8?B?THlubmUgTWF3c29u?= Microsoft Excel New Users 3 2nd Aug 2006 03:55 PM
Delivery Notes - puzzled. =?Utf-8?B?UmljaGFyZCBIb3JuZQ==?= Microsoft Access 4 11th Nov 2004 01:40 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 08:38 PM.