Hi - I have the following reference table in Excel
SourceApp TargetApp
Competitor Commercial
Partner
Business Partner
...
Does anyone know an easy way to convert the above table to an XML that looks as follows?
<?xml version="1.0" encoding="UTF-8"?>
<dvm
name="Customer" isNew="null">
<description>DVM
description</description>
<columns>
<column
name="SourceApp"/>
<column
name="TargetApp"/>
</columns>
<rows>
<row>
<cell>Competitor</cell>
<cell>COMMERICAL</cell>
</row>
</rows>
</dvm>
Thanks in advance
- Oscar