Hi all,
I'm having slight issues with passing parameters to an if-then XSLT. The following works:
Code:
<p><h1>Report for <xsl:value-of select="$reportinggroup" /></h1></p>
It shows the correct parameterized header in the HTML doc. However, I get nothing with this:
Code:
<xsl:for-each select="//audits/auditItem">
<xsl:if test="./auditConsistentCount = 1 and contains(./auditGroup, $reportinggroup)">
...
It never runs the code in this loop, even though the conditions should be met. Am I doing something terribly wrong?