xsl-list
[Top] [All Lists]

Re: Counting with two conditions

2004-11-26 02:39:19
Thanks,
that was so easy.
I thought of a more complex structure to get this result.

Sven

Richard Lewis wrote:
On Fri, 26 Nov 2004 10:18:47 +0100, "Sven Waibel" 
<sven(_dot_)waibel(_at_)imbus(_dot_)de>
said:

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:value-of select="count(parameter[status/@value='performed' and
verdict/@value='pass'])" />

</xsl:template>

Richard

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>