I have an XML document that looks somewhat like this
Essentially a load of Rows and columns... but I have added in the id's.
What I know is the id (eg MPRCodeVal - shown underlined above), but what I need is the value MPR001 (shown underlined above)which is in a sub element of the Cell...
I have a good few id's to search for and am wondering how to build this part for the XSLT sheet.
Thanks for your help.
Code:
<Workbook>
...
<Worksheet ss:Name="x">
<Table ...>
<Row>
...
</Row>
<Row>
<Cell>
<Data ss:Type="String">MPRCode</Data>
</Cell>
<Cell ss:StyleID="s77" id="[b][u]MPRCodeVal[/u][/b]">
<Data ss:Type="String">[b][u]MPR001[/u][/b]</Data>
</Cell>
<Cell ...>
</Cell>
</Row>
</Table>
</Worksheet>
<Worksheet ss:Name="y">
...
</Worksheet>
<Worksheet ss:Name="z">
...
</Worksheet>
</Workbook>
Essentially a load of Rows and columns... but I have added in the id's.
What I know is the id (eg MPRCodeVal - shown underlined above), but what I need is the value MPR001 (shown underlined above)which is in a sub element of the Cell...
I have a good few id's to search for and am wondering how to build this part for the XSLT sheet.
Thanks for your help.