LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,588
Default Creating delivery notes from a spreadsheet

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" wrote in message
...
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.



 
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
Creating and displaying an email in lotus notes thorugh excel Options lithium Excel Programming 1 June 20th 07 12:34 PM
DELIVERY NOTES IKEY Excel Worksheet Functions 0 January 23rd 07 07:12 PM
Delivery number for all dates in delivery period ewan7279 Excel Programming 0 January 22nd 07 09:38 AM
Creating a form on a worksheet - Can I make a button for "notes" [email protected] Excel Worksheet Functions 3 October 6th 05 04:50 PM
Delivery note or delivery order sheet Roy Istanbouli Excel Discussion (Misc queries) 1 January 21st 05 05:31 PM


All times are GMT +1. The time now is 10:49 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"