G Guest Jul 7, 2006 #1 Can I export selected data from an excel worksheet into an excel invoice template?
N NickHK Jul 7, 2006 #2 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
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