Spreadsheet.ExportXML
This function exports a spreadsheet to the new XML file format.
SVB Example
Exporting a spreadsheet as XML:
Option Base 1 Option Explicit Sub Main Dim spr As Spreadsheet 'assigns the active spreadsheet to the object spr Set spr = ActiveSpreadsheet 'exports the file Statistica.xml, starting at row 1, 'column 1. The variable text labels are exported and if the file exists it will 'be overwritten. spr.ExportXML("C:\users\GabiM\Documents\Statistica.xml",1,0,1,0,True,True) End Sub
Copyright © 2020. Cloud Software Group, Inc. All Rights Reserved.