View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
NickHK NickHK is offline
external usenet poster
 
Posts: 4,391
Default Export from excel into an invoice template

Set SourceWB=ThisWorkbook
Set DestinationWB=Workbook.Open("Invoice.xls")

With SourceWB
DestinationWB.Range("InvoiceNo").Value=.Range("Inv oiceNo").Value
...etc

That what you mean ?

NickHK

With This
"bookkeeper" wrote in message
...
Can I export selected data from an excel worksheet into an excel invoice
template?