excel sheet xml import with xslt (1 Viewer)

Wysy

Registered User.
Local time
Today, 10:43
Joined
Jul 5, 2015
Messages
333
Hi,
I am having trouble with creating xslt file for importing an excel sheet xml into access. The xml file looks like this:

I have tried to us the following code:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:eek:utput indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>

However it does not work. What do i do wrong?
thanks
 

Wysy

Registered User.
Local time
Today, 10:43
Joined
Jul 5, 2015
Messages
333
The sample xml:
<ss:Row>
<ss:Cell>
<ss:Data ss:Type="String">Típus</ss:Data>
</ss:Cell>
<ss:Row>
<ss:Cell>
<ss:Data ss:Type="String">Kártya tranzakció</ss:Data>
</ss:Cell>
 

Users who are viewing this thread

Top Bottom