Pages::getAvg($field[,$weight,$addEmpty])
Version 3.8
Get the average value
Version 3.8
Get the average value
Calcualte given formula for all pages and return the average value.
Float
Orders average Total Amount:
$this->get('pages','order')->addWhere('status','Ordered')->getAvg('total_amount');
Average of calculated value:
$this->get('pages','order')->addWhere('status','Ordered')->getAvg('price*amount');
Use credits to count weighted average
$this->get('pages','exams')->addWhere('student',$studentId)->getAvg('grade','credits');