I'm not sure if this is an Excel or XML/XSLT issue.
I've an excel document which has been application created and has values like this
This is as I want it to stay as when I upload this document I can find my "Active" ID and pull the data from that easily... which is a 1 in this case
The problem is that if I have the Excel sheet open and modify that 1 cell I loose the ID and looks like this instead.
Why does Excel get rid of the ID and is there a way around this? I could give the row an ID and search for the second position (as the first position is just text)... Any help would be gratefully appreciated. Thanks
I've an excel document which has been application created and has values like this
Code:
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Active</Data></Cell>
<Cell ss:StyleID="s92" id="Active"><Data ss:Type="Boolean">1</Data></Cell>
<Cell ss:Index="4" ss:StyleID="s87" />
</Row>
This is as I want it to stay as when I upload this document I can find my "Active" ID and pull the data from that easily... which is a 1 in this case
The problem is that if I have the Excel sheet open and modify that 1 cell I loose the ID and looks like this instead.
Code:
<Row ss:AutoFitHeight="0">
<Cell><Data ss:Type="String">Type</Data></Cell>
<Cell ss:StyleID="s88" id="Type"><Data ss:Type="String">normal</Data></Cell>
<Cell><Data ss:Type="String">yes</Data></Cell>
<Cell ss:StyleID="s87"/>
</Row>
Why does Excel get rid of the ID and is there a way around this? I could give the row an ID and search for the second position (as the first position is just text)... Any help would be gratefully appreciated. Thanks