Ok,
I'm trying to count all nodes that are not = NULL. I know how to count them all node
Code:
<xsl:variable name="QtyCount">
<xsl:value-of select="count(Qty)" />
</xsl:variable>
But how do I count only the ones that have a value? I can't find an example on the net that works.