MarsNW,
Well to export data to xls, EXPORT Type XLS or COPY TO TYPE XLS surely are more natural ways. And if you need xlsx, there are adodb providers for creating excel sheets. Besides you can always make use of OLE automation.
If you want a report layout, I question usage of xls, excel is a spreadsheet application - the german term, retranslated, "table calculation" suggests even more, it's not meant for reporting, but for calculating with data in it's table cells.
If that is acutally the reason you want to export to xls, then ole automation is much better for that matter than using frxes.
With an frx as the basis of an xls, even if xfrx supports that, you will not have much control about which columns your frx detail band fields will go, also I doubt formulas for summation, etc, which you may use via report variables, are not automatically converted to cell formulas in the resulting excel spreadsheet, the conversion rather is visually than functionally.
OLE automation of excel will yield the better results here, you are in charge and control how the excel sheet is created including the visual layout and formulas in it.
And if you intend to use xls for data transfer, it's even more questionable to go through a report.
Bye, Olaf.