Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Report Output To Excel.... Is this possible? If so best
Message
De
06/01/2001 09:02:24
 
 
À
05/01/2001 11:34:16
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire de rapports & Rapports
Divers
Thread ID:
00459677
Message ID:
00460190
Vues:
19
Look at Application.DataToClip() to copy VFP table/cursor data to the
windows clipboard and then paste it into Excel. You are not constrained
to the 16K limit like COPY TO XLS. Another benefit to this
approach is that you can have a preformatted Excel spreadsheet template
and simply drop the data into it and save as another name. Here is an
example of that technique:

oExcel = CREATEOBJECT('Excel.Application')

*-- Open the preformatted Excel template file
oExcel.WorkBooks.Open(cExcelTemplateFile) && This is read only

GO TOP IN vfp_cursor
*-- Copy tab delimited list of table values to windows clipboard
Application.DataToClip('vfp_cursor', RECCOUNT('vfp_cursor'), 3)

WITH oExcel
*-- Select the proper sheet
.Sheets('sheetname').Select()
*-- Position the cursor
.Selection.Range("A6").Select()
*-- Paste the contents of the clipboard
.ActiveSheet.Paste()

*-- Get rid of the table column names
.Rows("6:6").Select()
.Selection.ClearContents()
.Range("A1").Select()

.DisplayAlerts = .F.
*-- Save file under a new name hence preserving the template for future use
.ActiveWorkBook.SaveAs(cDirAndFileName)
.Quit()
ENDWITH

oExcel = .NULL.
RELEASE oExcel


>>>In this months FoxPro Advisor there is an article for sending memo files to an Excel Spreadsheet. That got me thinking....
>
>>Hi Della,
>
>COPY to only works for less that 16384 (2^14) for whatever reason.
>Do you have any good ways to get data into EXCEL easily and quickly??
>
>
>Peter
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform