Hi Reyn
use the following query to get the average of the 4 grades
<cfquery name="getgrades" datasource="yourdsn">
select student_id, 1stgrading, 2ndgrading, 3rdgrading, 4thgrading,
(1stgrading+2ndgrading+3rdgrading+4thgrading)/4 as avg_grad
from tbl_grade
</cfquery>
then the query will have avg_grad as the computed column.
use the field avg_grad as the average grade for students in your output
I hope this solves your problem
-Ramesh