{"id":1418,"date":"2021-12-19T21:19:47","date_gmt":"2021-12-20T03:19:47","guid":{"rendered":"https:\/\/www.tameri.com\/wordpress\/poetponders\/?p=1418"},"modified":"2023-11-26T12:54:24","modified_gmt":"2023-11-26T18:54:24","slug":"excel-gradebooks-on-steroids","status":"publish","type":"post","link":"https:\/\/www.tameri.com\/csw\/2021\/12\/19\/excel-gradebooks-on-steroids\/","title":{"rendered":"Excel Gradebooks on Steroids"},"content":{"rendered":"<p>Microsoft Excel is one of my favorite applications.\u00a0Long ago, it was Quattro Pro that displaced Lotus 1-2-3 in my heart, but Excel long ago rose to the throne.<\/p>\n<p>My wife and have I have maintained Excel workbooks for our daughters\u2019 schoolwork since the pandemic began. We updated the workbooks to full-fledged gradebooks at the start of the 2020-21 academic year. We also use Excel for tracking their reading logs, Girl Scout activities, and more. Sometimes, a spreadsheet is the best tool for a task.<\/p>\n<p>As we end the first half of the 2021-22 academic year, I have been adding yet more features to our gradebooks. Some of what I have done, in order:<\/p>\n<ul>\n<li>Revised the weighting of grades by assigning type;<\/li>\n<li>Created a summary sheet at the front of each girls\u2019 workbook;<\/li>\n<li>Applied color-coded \u201cConditional Formatting\u201d to grades for visual feedback;<\/li>\n<li>Added a \u201cDay of the Week\u201d column to study patterns;<\/li>\n<li>Converted the grade regions to \u201cTables\u201d within spreadsheets; and<\/li>\n<li>Added line charts to each academic subject\u2019s sheet, revealing grade trends.<\/li>\n<\/ul>\n<h3>Summary Sheets<\/h3>\n<p>The first sheet of each gradebook is a summary of grades by subject, with breakdowns by quarter. There are simple \u201cbrute force\u201d ways to accomplish this, but I took a complicated <span style=\"font-size: 19px\">\u2014 and more flexible \u2014 route.\u00a0<\/span><\/p>\n<p><span style=\"font-size: 19px\">The summary sheet includes cells to set the start and end of each quarter. Using the dates in those cells, the data in each subject\u2019s sheet is filtered and presented in the summary. If a quarter hasn\u2019t started, the corresponding cells are blank. This is an example of the equation I use to obtain a quarterly grade:<\/span><\/p>\n<blockquote><p><span style=\"font-size: 19px\">=SUMIFS(INDIRECT($B4&amp;&#8221;!$J$5:$J$5000&#8243;),INDIRECT($B4&amp;&#8221;!$C$5:$C$5000&#8243;),&#8221;&gt;=&#8221;&amp;Summary!J$12,INDIRECT($B4&amp;&#8221;!$C$5:$C$5000&#8243;),&#8221;&lt;=&#8221;&amp;Summary!J$14)\/SUMIFS(INDIRECT($B4&amp;&#8221;!$I$5:$I$5000&#8243;),INDIRECT($B4&amp;&#8221;!$C$5:$C$5000&#8243;),&#8221;&gt;=&#8221;&amp;Summary!J$12,INDIRECT($B4&amp;&#8221;!$C$5:$C$5000&#8243;),&#8221;&lt;=&#8221;&amp;Summary!J$14)<\/span><\/p><\/blockquote>\n<p><span style=\"font-size: 19px\">No, I didn\u2019t actually code all the cell references. Instead, I used Excel\u2019s Table feature and named columns. However, Excel converts the easier to read original to what you see above. I have no idea why Excel does this, defeating the purpose of the Table. (Yet, named ranges are preserved in complex equations.)<\/span><\/p>\n<p><span style=\"font-size: 19px\">The equation translates as:<\/span><\/p>\n<blockquote><p><span style=\"font-size: 19px\">Total\u00a0the data for the subject named in\u00a0\u201cB4\u201d of\u00a0the summary sheet where the date of assignments is between the first (J12) and last (J14) days of the quarter.\u00a0<\/span><\/p><\/blockquote>\n<p><span style=\"font-size: 19px\">The Excel function INDIRECT() converts a calculated text string into a range reference. I use INDIRECT() frequently when LOOKUP() functions don\u2019t quite meet my needs. <\/span><\/p>\n<p><span style=\"font-size: 19px\">I\u2019ve seen many sheets with such summary formulas hard-coded. The resulting formulas are shorter, but then you need to edit the formulas to get specific results. You could also use fancier tables with data grouped by quarters using outlining features. Many ways exist to obtain the same type of data summaries.\u00a0<\/span><\/p>\n<h3>Conditional Formatting<\/h3>\n<p>When grades are color-coded, it\u2019s easy to spot problem areas. I use Conditional Formatting to color code grades below 75 and 60 in yellow and red. Anything below a 75 suggests I need to review the materials again with one of the girls. Below a 60 means I need to present the information in a new way and practice a different strategy.<\/p>\n<p>Excel offers automatic conditional formatting. For a gradebook, \u201cColor Scales\u201d work well.<\/p>\n<h3>Days and Dates<\/h3>\n<p>Days and dates mark the school year, the semesters, and the quarters. The primary date column is a standard date, formatted in \u201cYYYY-MM-DD\u201d notation because that\u2019s how I think about dates. It\u2019s sorting thing from programming databases.\u00a0 I use the TEXT() function to return days of the week in another column.<\/p>\n<p>Believe it or not, this approach has revealed that Wednesdays are difficult for our daughters.<\/p>\n<h3>Worksheets Aren\u2019t Tables<\/h3>\n<p>Workbooks contain worksheets and worksheets may contain Tables and Pivot Tables, though worksheets do not need tables. Many users assume the worksheets (spreadsheets) are \u201cTables\u201d since they are\u2026 well\u2026 tables.<\/p>\n<p>An Excel Table is a range of data that behaves a lot like a database.\u00a0Tables have great functionality and look nice.<\/p>\n<p>The header row acts as names for data, allowing you to create equations that are easier to read and debug. For example, =SUM(ELAGrades[Earned]) returns the total points earned by a student in English Language Arts. Unfortunately, as mentioned earlier, Excel has a nasty habit of sometimes \u2014 but not always \u2014 converting the readable functions to column notation. This doesn\u2019t always happen, but sometimes. Microsoft should fix this since named regions remain as coded in functions.<\/p>\n<p>Table headers can feature \u201cFilter Buttons\u201d that quickly sort and filter data, hiding rows that don\u2019t meet the set criteria. I use filters often to display assignments on specific topics. For example, I might want set a filter within Social Studies to show only assignments on reading maps. That filter was useful when the girls were learning about longitude and latitude.<\/p>\n<p>The last row of a table offers automatic summary calculations, including lowest value (minimum), highest value (maximum), total, average, and counts. Sure, you could do this manually, or use named ranges, but tables automatically expand and adjust without a lot effort. Adding rows doesn\u2019t require fixing calculations with a table.<\/p>\n<p>People who don\u2019t use the Table feature of Excel often resort to workarounds like putting totals at the top of sheets. That\u2019s not a bad approach, since you can easily locate totals, but it isn\u2019t ideal when you share reports. People expect totals at the bottom of a table.<\/p>\n<p>Another reason to like tables: there are cool formatting templates. I stick to basic shades of blue for tables. I turn on alternating row colors, automatic headers, and other features as I need them.<\/p>\n<h3>Charts Are Great (and Painful)<\/h3>\n<p>Charts require some practice in Excel (and in every other application I\u2019ve used). The old \u201cChart Wizards\u201d would create disastrous charts more often than not. It seems Excel makes a lot of assumptions about the order of data columns and rows.<\/p>\n<p>Within each academic subject\u2019s worksheet, I have a Table for the data. Then, using the named columns from the Table, I generate line-chart tables showing daily performance and running averages. The x-axis is [Date], the y-axis is 0-100, and the two lines plotted are [Grade] and [RunningAverage].<\/p>\n<p>Charting in Excel is slightly, and only slightly, less annoying than trying to format a complex document in Word. Ask anyone who has wrapped text around a table or illustration in Word what it is like to update the document later. Charts in Excel can be incredibly frustrating. One wrong click things go sideways.<\/p>\n<p>Once I get a chart working, I hate to make changes for fear of breaking the chart. I place charts alongside data on a worksheet so I can make sure data sources remain correct. Moving a chart to its own tab in the workbook leads to extra frustration when something goes awry.<\/p>\n<p>When you reformat data, sometimes Excel warns that regenerating the table might take some time. You might wonder if the application has locked when updating a chart with lots of data points.<\/p>\n<p>Though I love the power of Excel, I do wonder if Microsoft has tried to include too many charting options.<\/p>\n<h3>We Like Data<\/h3>\n<p>Most users don\u2019t need to master Excel. However, Excel is designed for complicated financial, statistical, and research work. If you live in Excel for complicated tasks, then having a few charts in a homeschooling gradebook isn\u2019t a stretch.<\/p>\n<p>As you can tell, we like data. For \u201csmall\u201d amounts of tabular data, Excel is a great tool. Yes, there are now fancy cloud-based alternatives and \u201cgood enough\u201d low-cost or free alternatives, but Microsoft Excel dominates for a reason.<\/p>\n<p>In the not-to-distant past, programming Excel using Visual Basic was necessary for some tasks. Now, Microsoft has integrated 90% or more of what I used to code directly into Excel. Tables and PivotTables are magical. The improved Conditional Formatting replaces lots of VBA code. I cannot think of many times I need to write code anymore. It\u2019s nice to know I could code if I wanted.<\/p>\n<p>At least I\u2019m keeping my Excel skills honed during the pandemic.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Microsoft Excel is one of my favorite applications.\u00a0Long ago, it was Quattro Pro that displaced Lotus 1-2-3 in my heart, but Excel long ago rose&#8230;<\/p>\n<div class=\"more-link-wrapper\"><a class=\"more-link\" href=\"https:\/\/www.tameri.com\/csw\/2021\/12\/19\/excel-gradebooks-on-steroids\/\">Continue reading<span class=\"screen-reader-text\">Excel Gradebooks on Steroids<\/span><\/a><\/div>\n","protected":false},"author":2,"featured_media":1875,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"advanced_seo_description":"","jetpack_seo_html_title":"","jetpack_seo_noindex":false,"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"iawp_total_views":24,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[4,13,7,8],"tags":[52,96,225,246,265,347,502,526],"class_list":["post-1418","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-education","category-software","category-teaching","category-technology","tag-assessment","tag-charts","tag-formatting","tag-grading","tag-homeschooling","tag-excel","tag-spreadsheets","tag-teaching","entry"],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/i0.wp.com\/www.tameri.com\/csw\/wp-content\/uploads\/sites\/2\/2023\/12\/FB_Banner_Pen_Mac.png?fit=1200%2C630&ssl=1","jetpack-related-posts":[],"jetpack_sharing_enabled":true,"jetpack_likes_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/pfiw78-mS","_links":{"self":[{"href":"https:\/\/www.tameri.com\/csw\/wp-json\/wp\/v2\/posts\/1418","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.tameri.com\/csw\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.tameri.com\/csw\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.tameri.com\/csw\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.tameri.com\/csw\/wp-json\/wp\/v2\/comments?post=1418"}],"version-history":[{"count":1,"href":"https:\/\/www.tameri.com\/csw\/wp-json\/wp\/v2\/posts\/1418\/revisions"}],"predecessor-version":[{"id":1606,"href":"https:\/\/www.tameri.com\/csw\/wp-json\/wp\/v2\/posts\/1418\/revisions\/1606"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.tameri.com\/csw\/wp-json\/wp\/v2\/media\/1875"}],"wp:attachment":[{"href":"https:\/\/www.tameri.com\/csw\/wp-json\/wp\/v2\/media?parent=1418"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.tameri.com\/csw\/wp-json\/wp\/v2\/categories?post=1418"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.tameri.com\/csw\/wp-json\/wp\/v2\/tags?post=1418"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}