--- loncom/interface/statistics/lonstudentsubmissions.pm 2004/11/08 15:21:38 1.27 +++ loncom/interface/statistics/lonstudentsubmissions.pm 2004/11/19 19:44:39 1.28 @@ -1,6 +1,6 @@ # The LearningOnline Network with CAPA # -# $Id: lonstudentsubmissions.pm,v 1.27 2004/11/08 15:21:38 matthew Exp $ +# $Id: lonstudentsubmissions.pm,v 1.28 2004/11/19 19:44:39 matthew Exp $ # # Copyright Michigan State University Board of Trustees # @@ -654,6 +654,14 @@ sub prepare_excel_output { } } } + # Fill in the remaining rows with the students data + for (my $row = $student_row+1;$row<=$max_row;$row++) { + my $cols = 0; + foreach my $field (@StudentColumns) { + $worksheet->write($row,$cols++, + $student->{$field}); + } + } $rows_output++; &Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state, 'last student');