Here's a little snippet of some data I'm parsing:
Code: Select all
<Cell ss:StyleID="s21" >
<Data ss:Type="DateTime" >2009-06-19T12:50:00</Data>
</Cell>
<Cell ss:StyleID="s23" >
<Data ss:Type="Number" >1.64846</Data>
</Cell>
Basically, I can read in the ss:Type, but of course, that is set to "DateTime" and "Number". Then I see how many attributes there are, and there is only 1. So my question would have to be how can I get the value, for instance, 1.64846 out of the second cell?