[xsl] Counting with two conditions

Subject: [xsl] Counting with two conditions
From: Sven Waibel <sven.waibel@xxxxxxxx>
Date: Fri, 26 Nov 2004 10:18:47 +0100
Hi,

i have following problem:


XML-File:

<case>
	<parameter>
		<status value="performed"/>
		<verdict value="fail"/>
	</parameter>
	<parameter>
		status value="performed"/>
		<verdict value="pass"/>
	</parameter>
	<parameter>
		status value="performed"/>
		<verdict value="pass"/>
	</parameter>
</case>
---------------------------------------------

XSL-File:

<xsl:template match="case">

Here i wanna count all paramter that have been "performed" and their verdict is "pass"

</xsl:template>


Thanks and best regards
Sven

Current Thread