"DOES ANYONE HAVE A SOLUTION FOR EXPORTING FROM FOXPRO 2.6
REPORTS TO EXCEL" -- A solution for WHAT exactly?
You can gather your data within Foxpro into the proper format (possibly using an SQL statement) which would be sent to the report and then output that data to Excel with the command:
SELECT <reporttable>
COPY TO <excelfile.xls> XLS
Assuming that you have gathered your data correctly into a single data table (or cursor/query) then the data will be sent to the Excel compatible file. The field names will appear as the column titles.
Note: Assuming that you have mixed field types (char & numeric) your numeric data will appear in the XLS file as character representations of your numbers. To make any calculations on it in Excel you will need to convert the column format to numeric.
If you are looking for a different "what", then we need you to supply us with more information.
Good Luck,
jrbbldr
jrbbldr@yahoo.com