Forum Moderators: open
Something like this:
<xsl:for-each select="aaa/bbb"><xsl:if test="position < 10">...</xsl:if></xsl:for-each>
Worked a treat
<xsl:if test="position() < 10">
Regards
Gosman