Rss & SiteMap
Foxtable(狐表) http://www.foxtable.com
这个是狐表自带的实例的学生成绩统计60分以上列的计算代码:
这个代码统计只是整个表统计,如果要分年级分班级统计,应怎样修改一下。
e.DataRow(e.DataCol.Name) = DataTables("成绩表").Compute("Count(学号)", e.Datarow("科目") & " >= 60 And " & e.Datarow("科目") & " < 70" )
e.DataRow(e.DataCol.Name) = DataTables("成绩表").Compute("Count(学号)",e.Datarow("科目") & " >= 60 And " & e.Datarow("科目") & " < 70 And [年级] = '" & e.Datarow("年级") & "' And [班级] = '" & e.Datarow("班级") & "'" )
谢谢C版主!