title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
XmlMap.ExportXml method (Excel) |
vbaxl10.chm754090 |
|
|
ffb4e656-157e-e5f3-1ddd-314172ba5839 |
05/21/2019 |
medium |
Exports the contents of cells mapped to the specified XmlMap object to a String variable.
expression.ExportXml (Data)
expression A variable that represents an XmlMap object.
Name | Required/Optional | Data type | Description |
---|---|---|---|
Data | Required | String | The variable to export the data to. |
To export the contents of the mapped cells to an XML data file, use the Export method.
The following example exports the contents of the cells mapped to the Contacts schema map to a variable named strContactData
.
Sub ExportToString()
Dim strContactData As String
ActiveWorkbook.XmlMaps("Contacts").ExportXml Data:=strContactData
End Sub
[!includeSupport and feedback]