For Courses having Multiple Sections:
Add multiple lines to the CSV tile, one line per section per course.
For example, a course called "Intro to Accounting" (ACCT 101), with two sections (sections A and B) offered at the same time (Mondays and Wednesdays at 10:00am and on Fridays at 2:00pm) and a third section (section C) offered at night once per week (Thursdays at 6:00pm).
This calls for:
one record for section A for the Monday / Wednesday class with "MW" as day of the week (can be put together since they have the same start and end time)
one record for section B for the Monday / Wednesday class with "MW" as day of the week (can be put together since they have the same start and end time)
one record for section A for Friday class with "F" as day of the week.
one record for section B for Friday class with "F" as day of the week.
one record for section C for Fridays class with "F" as day of the week.
That is, ACCT 101 calls for a total of five (5) records in this example.
An example structure with some fields omitted.
Course Unique Identifier | Course Name | Course Code | Section Code | Start Time | End Time | Days of the Week |
---|---|---|---|---|---|---|
ACCT101-A | Intro to Accounting | ACCT101 | A | 36000 | 41400 | MW |
ACCT101-B | Intro to Accounting | ACCT101 | B | 36000 | 41400 | MW |
ACCT101-A | Intro to Accounting | ACCT101 | A | 50400 | 55800 | F |
ACCT101-B | Intro to Accounting | ACCT101 | B | 50400 | 55800 | F |
ACCT101-C | Intro to Accounting | ACCT101 | C | 64800 | 79200 | H |