Need help with school roster. What formulas to use to automatically populate teachers' class lists?

I am organizting for the upcoming school year. I have a complete list of students that includes thier basic information including the class to which they have been assigend. I want to create a different spreadsheet for each teachers that is automatically populated once a student has been assigned to a class. This way, if a class assignment changes, that change is automatically recorded in the teacher's specific class list.


Thanks for you help.

Posted on Jul 29, 2012 12:20 PM

Reply
3 replies

Jul 29, 2012 8:03 PM in response to wildsmithc

You can start with something like this:

User uploaded file


The table on the left is a table I named "Master Student List". The table on the right is named for the particular teacher (in this case I made up the name "Mathias"):

The table on the right can be duplicated, renamed, then updated with the new teacher name (cell C1). to construct this table do the following:


- make a new table with two header rows (as shown)

- enter the following formulas:

A3=MATCH($C$1, INDIRECT("Student Master List :: B"&SUM(A2)+1&":B"&ROWS(Student Master List :: B)), 0)+SUM(A2)


B3=IFERROR(OFFSET(Student Master List :: $A$2, $A3-2, 0, 1, 1), "")

C3=IFERROR(OFFSET(Student Master List :: $A$2, $A3-2, 2, 1, 1), "")

D3=IFERROR(OFFSET(Student Master List :: $A$2, $A3-2, 3, 1, 1), "")


now select A3 through D3 and fill down as needed


The name of the table is only for your information... but the name in Cell C1 is very important. It must match the name of the teacher in the master list.


the notation A3=MATCH($C$1, INDIRECT("Student Master List :: B"&SUM(A2)+1&":B"&ROWS(Student Master List :: B)), 0)+SUM(A2)


means... in cell A1 enter the text "=MATCH($C$1, INDIRECT("Student Master List :: B"&SUM(A2)+1&":B"&ROWS(Student Master List :: B)), 0)+SUM(A2)" but omit the double quotes I typed in this sentence.


I hope this helps you get started

This thread has been closed by the system or the community team. You may vote for any posts you find helpful, or search the Community for additional answers.

Need help with school roster. What formulas to use to automatically populate teachers' class lists?

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.