J
Jason
I have optional elements in my schema. Presently, if the cells mapped to the attributes of the optional elements are left blank, the elements are written with "0" as the attribute (see example below). However, I want the optional elements ("Element1" and "Element2" in the example below) to be omitted from the exported XML file.
For example I get ...
<Properties>
<Element1 a="0" b="0"/>
<Element2 c="0" d="0" e="0" f="0"/>
</Properties>
But, what I want is ...
<Properties>
</Properties>
Can this be done? If so, what's the trick?
tia,
Jason
For example I get ...
<Properties>
<Element1 a="0" b="0"/>
<Element2 c="0" d="0" e="0" f="0"/>
</Properties>
But, what I want is ...
<Properties>
</Properties>
Can this be done? If so, what's the trick?
tia,
Jason