Intro To Google Sheets
Intro To Google Sheets
October 2023
Data analysis ⭐⭐⭐⭐ Extensive library of formulas; lacks some ⭐⭐⭐⭐⭐ Extensive library of formulas;
statistical tests and functions includes advanced functions and statistical
tests
Data visualization ⭐⭐⭐⭐ Offers a decent selection of data ⭐⭐⭐⭐⭐ Offers more data visualization
visualization options; not as intelligent as Excel options; intelligent "Recommended Charts"
feature creates charts from complex data sets
Collaboration ⭐⭐⭐⭐⭐ Built for live collaboration, with ⭐⭐⭐ Live collaboration requires additional
intuitive tools such as live chat and easily accessible setup and alignment of Excel versions; fewer
version tracking intuitive collaborative tools
Simplicity ⭐⭐⭐⭐ Fewer advanced tools; interface is clear ⭐⭐⭐ Many advanced features and tools;
and minimally cluttered interface feels a little cluttered; bigger learning
curve
Speed ⭐⭐⭐⭐ Huge quantities of data can slow down ⭐⭐⭐⭐⭐ Can handle huge quantities of
the platform data with minimal impact on performance
Price ⭐⭐⭐⭐⭐ Free for individual use ⭐⭐⭐ The desktop app costs a flat fee, and
Microsoft 365 requires a subscription
● What is a cell?
○ A cell is the intersection between a row and a column
● What can a cell contain?
○ Each cell can contain any value (either text or number) or a formula with a relative
cell reference.
● How can I avoid the relative cell reference?
○ By using the “$”. You can either block the whole thing or just a column or row!
This might come in VERY handy at times.
● Formulas are always summoned with “=” or “+” sign. If you want to use “+” or “=” at
the beginning of a text string you can add “ ‘ “.
● Formulas always follow the same logic: =FORMULA(INPUTS). Want to know what
the inputs are? How many? You already have it there!
● Helpful tips
○ Why do we hate merged cells?
○ Chose a data format and stick to it
○ Remove Duplicates
○ Avoid double entry tables (as long as it makes sense!)
● Why is it useful?
○ You can make information very easy to read or intuitive for the viewer.
● SUM: As you might suppose, this formula returns the sum of all the values selected
● AVERAGE: Again pretty straight forward, use this formula if you want to know the
average value of a given interval
● LEFT/RIGHT: This formula allows us to extract a piece of string from a cell starting
from the left or from the right
● LEN: Pretty straight forward, this formula counts the letter in a word, its LEN-gth
● MID: Super useful! Allows us to extract a string from the middle of a string
● TRIM: Useful for data quality best practices! This removes all non-printable
characters (white space) from the beginning and the end of a word
9 | Confidential. Do not distribute.
Intro to Formulas - Conditional Formulas
IT IS STARTING TO GET COMPLICATED. HANG IN THERE.
● The conditional formula for excellence is the IF. What does conditional mean? It
means that the result will depend on a given condition.
● Lets review the anatomy of an IF statement:
○ =IF(CONDITION,OUTPUT IF CONDITION IS TRUE, OUTPUT IF CONDITION IS
FALSE)
○ =IFERROR(
● So, what can SUMIF, AVERAGEIF or COUNTIF mean?
● This function is probably one of the most used when working with several tables
● IMPORTANT! Take into account that vlookup only works if your search key is in
the first column of your lookup table
This last section will probably set you apart from average google sheets users. These
are complex formulas, hard to use, so hand on to your hats.
● QUERY: One of THE most powerful formulas there is. This formula allows us to
use SQL language (the language you use in Databases) with our tables.
Combined with other formulas, such as IMPORTRANGE) it can be incredibly
handy.