Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Creating and displaying an email in lotus notes thorugh excel Options | Excel Programming | |||
DELIVERY NOTES | Excel Worksheet Functions | |||
Delivery number for all dates in delivery period | Excel Programming | |||
Creating a form on a worksheet - Can I make a button for "notes" | Excel Worksheet Functions | |||
Delivery note or delivery order sheet | Excel Discussion (Misc queries) |