Export from excel into an invoice template

  • Thread starter Thread starter Guest
  • Start date Start date
Set SourceWB=ThisWorkbook
Set DestinationWB=Workbook.Open("Invoice.xls")

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

That what you mean ?

NickHK

With This
 
Back
Top