I wish to export data to a multi-area range on an Excel sheet. I have it as a named range, "Data", and the following just writes the records as a contiguous chunk:
Is there any way to do this without having to go cell by cell?Code:... Dim XLsht As Excel.Worksheet Dim rs As DAO.Recordset ... XLsht.range("Data").CopyFromRecordset rs
Thanks!