Check out my TPT Store for tons of resources and templates!
Priorities:
Sort & Filter / Create Queries
Priorities:
Connect to Student Database
Priorities:
Keep track of:
Priorities:
Database Magic:
(automatically highlights certain cells based on whatever parameters you set up)
(makes Header rows / columns so you can scroll through the data and always know where you are)
(makes each row automatically a different color)
(create drop down lists, calendar date inputs, and other stuff within cells)
(save grouped cells for use in later formulas)
(Great for isolating groups of data easily)
[ start with {= sign} ];
[ then {Formula Name} ];
[ then Specific Parameters inside the (), following the guidelines for that specific formula using references to other cells in the spreadsheet. ]
Just starting out? Try these formulas to get a taste for the magic.
=SUM(), SUMIF(), SUMIFS()
Add numbers together. SUMIF lets you give a parameter for adding, SUMIFS lets you give multiple parameters for adding.
=COUNTIF(), COUNTIFS()
Count how many of something there is, based on one or more parameters
= Locking Range References with "$" (A1 vs $A1 vs A$1 vs $A$1)
Use the Dollar Sign as part of Cell references in other formulas to ‘FREEZE’ the reference, making copy and paste of the formulas easier across rows and columns.
=CONCATENATE(D2,", ",E2) or =CONCATENATE(E2, " ", D2)
Combine First & Last Names from separate cells into one cell with a comma in between (Last, First) or a Space (First Last)
Can also be done with a simpler formula using the "&" symbol: =D2&", "&E2 or =E2&" "&D2
=DATEDIF(J2,TODAY(),"Y")
Subtract birth date from Today’s date to get current age in years. (Automatically stays updated)
=REPLACE(N2,1,3,"")
Automatically Turn the Instrument Code (01 Flute, 09 Trumpet, etc.) INTO the Instrument Name (Flute, Trumpet, etc.)
Feeling brave? Try these formulas to take your spreadsheets to the next level!
=XLOOKUP() - Similiar to VLOOKUP, but better!
Grab Specific Data from a Specific Place somewhere else in your spreadsheet - good for connecting payment records, health forms, permission slips, t-shirt orders, and Google Form results to all the other data in your spreadsheets!
=FILTER() or =SEARCH()
Get a Report of specific data you need without having to hide columns and rows of your main data.
=HYPERLINK()
Turn information into a dynamic hyperlink (to a website) - good for creating automatic links to search the internet for audio files of songs that are in your music library.
=IMPORTRANGE()
Import any range of data from other spreadsheets you have access to.
Will require authentication the first time you use it.
=RAND() or =RANDBETWEEN()
Great for coming up with random numbers for use in a presentation . . .
The Power of Spreadsheets is in their ultimate customizability to fit any specific situation or use-case. All it takes is a little curiosity, some dedicated practice, and a healthy dose of creativity to discover the solution you need! And once you find that solution, the spreadsheet can automate the task forever, freeing you to focus on teaching your students!