Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
KaKa
 
Posts: n/a
Default How can I get individual reports from excell gradebook?

I want to write progress reports for each student, based on the information
entered in an Excel gradebook. How can I do this, so that the name of each
assignment and it's points appears on an individualized report for each
student?
  #2   Report Post  
Jason Morin
 
Posts: n/a
Default

It depends on how your gradebook is set up. For example,
if you had names in column A, with assignments in row 1
and grades across the columns:

Name Assignment #1 Assignment #2 Assignment #3
Jack A B B
Melissa B+ B+ B
John A A- C+
Diana B+ A+ A
Luke C- C B-

You could apply an AutoFilter (Data Filter
AutoFilter) and filter by name in col. A. Then Print. Or
you could even use a simple macro like the one below to
print each student and their scores on an individual
pages:

Sub PrintGradesbyName()
Dim LastRow As Long
Dim i As Long

LastRow = Cells(Rows.Count, 1).End(xlUp).Row

With ActiveSheet
.PageSetup.PrintTitleRows = "$1:$1"
For i = 2 To LastRow
.Rows(i).PrintOut Copies:=1, Collate:=True
Next i
End With

End Sub

---
To use, copy the code above, press ALT+F11, go to Insert
Module, and paste in the code. Then Press ALT+Q to

close VBE. In XL, go to Tools Macro Macros and run
the macro.

HTH
Jason
Atlanta, GA


-----Original Message-----
I want to write progress reports for each student, based

on the information
entered in an Excel gradebook. How can I do this, so

that the name of each
assignment and it's points appears on an individualized

report for each
student?
.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Can I view an excell document without excell (not installed wit. Gordon Excel Discussion (Misc queries) 8 May 2nd 06 05:41 AM
Can I view an excell document without excell (not installed wit. Kevin Excel Discussion (Misc queries) 1 February 16th 05 08:27 PM
lable ranges in Excell david Excel Discussion (Misc queries) 2 February 2nd 05 11:26 PM
Why can't we see or access MS Excell 2003 even though we have MS . SouthernBell Setting up and Configuration of Excel 2 December 1st 04 12:08 AM
EXCELL 2002 Glitch???? Gabriel20783 Excel Discussion (Misc queries) 1 November 29th 04 08:55 PM


All times are GMT +1. The time now is 12:08 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"