|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| Question |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: |
// How many months selected in parameter ?Month
//Parameter ?Month is a static list with month name as description and 1-12 as value. Number parameter, prompt with description only
WhileReadingRecords;
numberVar Array Input := {?Month};
NumberVar howmany:= count (Input);
//To sum up the month fields selected by the user
Whileprintingrecords;
numberVar Array Input;
numbervar howmany;
local numbervar psum;
local numbervar i;
numbervar array P := MakeArray({gl_master.glm_amt_period1},
{gl_master.glm_amt_period2},
{gl_master.glm_amt_period3},
{gl_master.glm_amt_period4},
{gl_master.glm_amt_period5},
{gl_master.glm_amt_period6},
{gl_master.glm_amt_period7},
{gl_master.glm_amt_period8},
{gl_master.glm_amt_period9},
{gl_master.glm_amt_period10},
{gl_master.glm_amt_period11},
{gl_master.glm_amt_period12});
//select the periods to sum based on the months selected
For i := 1 to howmany Do
psum:= psum + P[Input[i]];
psum
|
Advertisement
| Hall of Fame |