1
I have an Excel spreadsheet, generated by SAP with a date field. I need to convert this spreadsheet to XML.
I do the XML mapping by Excel, but I cannot make it export the date field as a date, always appears the equivalent number as below, where the date is 06/06/2014, and in XML appears 41796.
I’ve tried some combinations of formatting in Excel, but none helped. Even has a post right here in stackoverflow, but solved my case.
Note: When I convert range to xml, msg appears: The data you are trying to map contains an incomparable formatting with the format specified in the spreadsheet.
I am using the XML add-in tools from Excel itself.
I wonder if there’s some configuration missing. Is there any way to specify the data type in the XML map?
<Row>
<Documento_SD>3208510</Documento_SD>
<Denominacao>DISJUNTOR DWA800N-630-3</Denominacao>
<Nome_1>A B RODRIGUES</Nome_1>
<Data_de_remessa>41796</Data_de_remessa>
</Row>
Thanks for your help.