Solved
Is there a function in FormCalc for Standard Deviation (Excel StdDev)
No text available
You should have it. Please try again
Thanks, I checked that. SD can be calculated for sample and population. I was using the Population's formula. Now, I have used the sample's and it is working as per your expectations. Fixed Form.
For this, the following script is being used:
var rows = this.resolveNodes("tblTestData.repeatingRow[*]");
var sm=0;
var cm=0;
for(var i=0;i<rows.length;i++)
{ if(rows.item(i).airVoids1.rawValue)
{
sm+= Math.pow(rows.item(i).airVoids1.rawValue - form1.page1.tblTestData.row2.amountMeanX.rawValue,2);
cm=cm+1;
}
}
form1.page1.tblTestData.row2.amountDeviation.rawValue = Math.sqrt(sm/(cm-1));
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.