-
I am converting xml to flat file using xslt. I need to count certain lines NOT all that I am printing out to flat file. after monkeying around for about four hours, I have no clue how to approch this. any ideas?
-
Cant you use teh count() function:
<xsl:value-of select="count(NodeName)"/>
-Sanjay
-
I would have but there will be multiple elements with same name. and they will be considered one row. Anyways, Thanks for the reply. I made my way around, pointing my XSL to a javascript (what a dumb solution, but hey, it works right)