I have a template for a trailer record that has a parameter 'numberOfRecords' . \[code\] <xsl:template name="render-FileTrailer"> <xslaram name="fileRecordIdentifier" select="TR"/> <xslaram name="numberOfRecords"/> </xsl:template>\[/code\]This number should the total count for my parent record and all of its children records. An example would be\[code\]<people> <person> <name> Mark</name> <age>32</age> <children> <child> <name> Mark Jr.</name> <age> 2</age> <child> <child> <name> Angel</name> <age> 4</age> <child> </children> </person></people>\[/code\]so this would return 3, 1(mark) + 2(his two children)How can I do this? This is my first time ever working with XSLT's.