I have a column in excel that is a percentage. When I save 6% it saves to the XML as
BUT when I save 7% it saves to the XML as
I understand why Excel does this, but how do I go about saving 7.0000000000000007E-2 as 7 in the XML?
Code:
<Cell><Data ss:Type="Number">0.06</Data></Cell>
Code:
<Cell><Data ss:Type="Number">7.0000000000000007E-2</Data></Cell>
I understand why Excel does this, but how do I go about saving 7.0000000000000007E-2 as 7 in the XML?