Assignment overview
This assignment is designed to use certain features of Excel and also help you keep track of your grade in this course.
This problem uses a number of advanced features of Excel and it is expected that there will be questions. Keep in mind that the instructor's CIS 123 website has a FAQ sheet for using Excel, there will be a demonstration of Excel in one of the optional class sessions, and there are many tutorials on how to use specific features of Microsoft Excel on the Web. There is also a discussion forum on Desire2Learn for asking questions about assignments.
There are sample pictures linked within this document that show what most of the project should look like. Keep in mind that many cells must be formulas and that typing in numbers to match a picture instead of using a formula does not fulfill the requirements.
Note: One common mistake is to misuse functions such as SUM. If you want to add a contiguous group of cells, such as D4 through D10, then SUM is perfect since you can specify the range and it will automatically adjust if a row is inserted or deleted within that range. The formula would look like: =SUM(D4:D10). That is much clearer and better than the error-prone: =D4+D5+D6+D7+D8+D9+D10. The misuse comes when people try to use SUM for everything. If you just want to add cells E7 and E12 use: =E7+E12. If you want to multiply them use: =E7*E12. Do NOT use =SUM(E7+E12) or =PRODUCT(E7*E12). In those cases SUM and PRODUCT are not doing anything other than wasting computer processing power. If you do not understand this, please ask the instructor for clarification. Points will be deducted for misusing the SUM and PRODUCT functions.