#1
|
|||
|
|||
![]()
Overflow page Text is truncated.
I have a javascript rule written that returns non-formatted text based off a supplied number. In this result the number given is 555. The script returns groups of 100 up to the given qty. Each group is separated by a newline Code: Code:
var finalCount = Field("Qty");//Keeps the final record count being printed by groups var myCount = finalCount;//Will be used to determine the number of groups (100ea) needed for qty printing var myIndex1 = 1;//Lowside number of every output group range var myIndex2 = 100;//Highside number of every output group range var myAnswer = [];//Array to hold the collected groups myCount = myCount/100;//breaks records to be printed by 100 myCount = Math.ceil(myCount);//always rounds up 100 group count for (i = 0; i < myCount; i++) { if (myCount == 1) { myAnswer.push("1 thru " + finalCount); break; } if (myCount == i + 1) { myAnswer.push(myIndex1 + " thru " + finalCount); break; } myAnswer.push(myIndex1 + " thru " + myIndex2); myIndex1 = myIndex1 + 100; myIndex2 = myIndex2 + 100; } return myAnswer.join("\n"); Quote:
Any help? Tks George |
Thread Tools | Search this Thread |
Display Modes | |
|
|