[XSL-LIST Mailing List Archive Home]
[By Thread]
[By Date]
[xsl] FW: XPATH 'OR' Operator Syntax Question
Subject: [xsl] FW: XPATH 'OR' Operator Syntax Question
From: "Joran, Peter" <PJoran@xxxxxxxxxx>
Date: Thu, 14 May 2009 11:10:35 -0400
|
All
Do you know how to use an 'OR' operator in XPATH? I've looked on-line
and I'm coming up empty.
In the expression below I want to count records with a Status = Here OR
Pending OR Accepted.
All thoughts very welcome!
Many Thanks
Pete
count(/dsQueryResponse/Rows/Row[normalize-space(@Status_) = 'Here' and
normalize-space(@Classification_) = $fieldvalue]/@Source)
|