Posts

Making an assessment accommodations schedule

Image
At our school, like all schools, we have students with learning differences. When students qualify, the IB grants them testing accommodations. This could be someone to read the questions to them, the use of certain technology, but mostly it means these students are granted additional time.  In order to be informed about upcoming assessments, we looked to using a Google Form.  The initial version of the data from the Form was functional but hard to read. The results sheet was on a separate file and the data was hard to read.  I did a few things that would help me if I were looking at it. I organized it by the date of the assessment to be first. Then I added the grade and class of the student. I needed to know when the assessment was and how long it was. I also removed tests that were over and ordered the tests in reverse chronological order - all to help me stay organized. Here is what I came up with using a QUERY formula. ---------- = QUERY ( 'IAA Requests'!A1:P , "SELECT

Checking Historical Temperature with Google Sheets

Image
I was back in Minnesota for the summer this year. The temperature really started to rise and I wondered if this was an anomaly, or if it was within the range of normal for July.  Then I wondered if temperatures were increasing. First I needed to get the data. A Google search for "Minnesota annual high temperature" led me to a site with the data I needed. <Example needed> Here I could use the IMPORTHTML function to pull the data to the sheet. There were actually two tables, so I needed to change the formula from 1 to 2. <Example needed> After importing the data, I copied it and pasted the values only. Then I could change the dates to year only (file>format>number), and moved the date column so it was to the left. From here, I was able to create a table. (file>insert>chart) Then, I thought I wanted the annual minimum temperature, so I repeated the process. My findings The high temperature for the years has somewhat remained stable, while the low temperat

Highlight a Cell with a Change

This is not exactly what I wanted to do, but I think it might be useful nonetheless.  A while back I saw that Ben Collins had a sheet where the rows and columns would have a highlight wherever the cursor was. Since this is the summer of doing, I wanted to replicate that.  Well, I didn't, but I was able to make a sheet that highlights the last cell that was changed. I wonder what a spreadsheet that showed the last three changes - as a gradient - might look like. Anyway, the file is below. https://docs.google.com/spreadsheets/d/1PP0VK9WbOjufLXrdrFEbrv4TQ3xwdlLK0t4JQBt03dI/copy

Visualizing Student Support Data with Google Sheets

Image
In the beginning I joined the [formerly-called] SEN team last year. The team was using anecdotal records for their data collection. The issue was that it was kind of a black box -immediately I wondered how I would know if the strategies I was using with students in my care were helping them reach their goals. Last year, I helped the team reimagine some ways to collect data on student behavior through the use of rubrics, checklists, and goal trackers. We also had teachers write anecdotal notes about students while observing their behavior. This year, the school created a new position, inclusion support coordinator. The first thing she did when she came in was to ask how we could collect data from teachers more easily. I was elated to hear this and suggested we use a Google Form that could be easily bookmarked to the browser, so that's what we did. She pushed teachers to use it when they suspected academic or behavioral issues with students. We also did away with the former ways of c

Using AI for Formula Heavy Lifting

Image
This post was inspired by an article in Life Hacker . At the beginning of this school year, I had an interest in spreadsheets. I was also considered one of the more knowledgeable people in my school about them.  I was Googling how to do many of the more complicated formulas. I felt like I was moving too slowly and so I tried using AI to help me with those formulas I couldn't figure out. I remember when the AI boom hit. After I "discovered" ChatGPT, I found a site that would help you with Excel formulas. That site started charging to use it, so I tried using AI. ChatGPT is better at Google Sheets Formulas than Gemini There are many AI tools to choose from. I when I first started making this dashboard I started using Google's AI tool, Bard. I liked it, so I tried it with Google Sheets. I thought that since it is also a Google product it would but it was shocking to me how poor it was at handling Google Sheets formulas and solving problems I had.  I tried ChatGPT because

Import Data from Another Workbook

Image
To be honest, I don't know the proper terminology. But, after spending about 4 hours working on this formula, I got it working. The problem I was trying to solve was that we had a spreadsheet that was being updated regularly with data, and we wanted to feed that data into a different spreadsheet.  I knew that. I could simply do this with IMPORTRANGE , which can get the data for each cell, but then I would have to create a formula for each entry. I wanted a single formula that matched the student name to the data. I knew from past projects that the INDEX and MATCH combination was probably something that I wanted to use. So I started playing around with it.  Student Name student ID gender grad year current grade DOB RTI reading level The particular data I wanted was the reading data.  In the end, ChatGPT helped me figure out that the formula would be something like the following. = VLOOKUP ( A7 , IMPORTRANGE ( "URL" , "SHEET!RANGE" ) , data COLUMN , FALSE )

Create a Timetable where You Can Count Certain Lessons

Image
Made with Craiyon