I have an Excel sheet. In that sheet, one of the column ( name as ID) has values with leading zeros. For example-
ID -- 000987654321
When I am generating XML from Excel, the leading zeros are getting dropped.
While generating XML, I tried to map it like --
<xsd:element name="ID" type="xsd:decimal" />
Need help with what datatype should I put so that the leading zeros do not get dropped while generating XML.