Here is a bit of XML that's in each record:
<MT N="usage" V="something"/>
<MT N="usage" V="something else"/>
I'm trying to display all of these V values for each record with XSLT, but am having issues targeting the correct value.
<xsl:for-each select="MT[@N = 'usage']/@V">
<xsl:value-of select="V"/>
11
</xsl:for-each>
This outputs "1111", but the value of V isn't displayed. How do I target that?
Cheers