Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: simpledev
  • Order by date
  1. simpledev

    Sum exam score

    Hi, If you want the final score, then instead of incrementing a variable in xsl (which you can't do anyways since xsl variables are all immutable), you can use a construct like: <xsl:value-of select=&quot;count(question/identquest[@id='Q']/response/condition[@ident='Correct'])&quot;/> This...
  2. simpledev

    Help in writing XSL, to find sum

    Hi Deepa, You can try the sum function: <xsl:variable name=&quot;total&quot; value=&quot;sum(UsageItem/TaxAmount/Value)&quot;/> now, 'total' will have the sum of all the 'value' nodes under TaxAmount. All the best.
  3. simpledev

    HTML inside XML?

    Yes!! This works..

Part and Inventory Search

Back
Top