It's all done: :) <xsl:variable name="Lcount" select="round($count div 1.11)" />
Regards, AJ ----- Original Message ---- From: Andrei Jucan <[EMAIL PROTECTED]> To: JMeter Users List <[email protected]> Sent: Friday, September 21, 2007 12:34:33 PM Subject: Re: How to calculate "90% Line" value with xslt transformation? Sorry, i found out a half of solution :) <xsl:for-each select="/testResults/*[not(@lb = preceding::*/@lb)]"> ........ <xsl:variable name="count" select="count(../[EMAIL PROTECTED] = current()/@lb])" /> <xsl:variable name="Lcount" select="$count div 1.11" /> ............ </xsl:for-each> <td> <xsl:call-template name="display-time"> <xsl:with-param name="value" select="$LineTime" /> </xsl:call-template> </td> The results are "NaN". But if i define a variable Lcount with a select value of "10" for example, it works ok. I guess that the result of "$count div 1.11" is not a number and it should be rounded somehow...:-?. Thanks again, AJ ps Jmeter manual sais: 90% Line - the maximum time taken for the fastest 90% of the samples. # The remaining samples took longer than this. ----- Original Message ---- From: Andrei Jucan <[EMAIL PROTECTED]> To: JMeter Users List <[email protected]> Sent: Thursday, September 20, 2007 9:34:04 PM Subject: How to calculate "90% Line" value with xslt transformation? Hi, i'm using jmeter ant task for parsing jtl files and output to html and i wish to put in reports values for "90% Line" response time. How can i do that modifying xsl style file? Thank you, AJ ps Right now i'm using a slight modified version of jmeter-results-detail-report.xsl from Jmeter extras folder. ____________________________________________________________________________________ Be a better Heartthrob. Get better relationship answers from someone who knows. Yahoo! Answers - Check it out. http://answers.yahoo.com/dir/?link=list&sid=396545433 ____________________________________________________________________________________ Take the Internet to Go: Yahoo!Go puts the Internet in your pocket: mail, news, photos & more. http://mobile.yahoo.com/go?refer=1GNXIC ____________________________________________________________________________________ Don't let your dream ride pass you by. Make it a reality with Yahoo! Autos. http://autos.yahoo.com/index.html

