Interview Questions

Tuesday, May 13, 2014

How to print average through display method in AX?

display real method1()
{
    ;
//Values depends on the number of fields in you operation
// Add all values and divide by number of values.

  return (AVGtable.Value1+AVGtable.Value2)/2;
}

No comments:

Post a Comment