Google Sheets Mastery
Your complete guide to spreadsheets, formulas, data analysis, charts, and collaboration
💡 Click Print, then select "Save as PDF" as your printer to save a copy
Google Sheets Reference Guide
Victory Code
WHAT IS GOOGLE SHEETS?
Google Sheets is a free, cloud-based spreadsheet application that allows you to organize, analyze, and visualize data online. It's part of Google Workspace and works seamlessly across all your devices.
- → Cloud-Based: Access your spreadsheets anywhere with an internet connection
- → Real-Time Collaboration: Share and edit with multiple people simultaneously
- → Auto-Save: Never lose your work - changes save automatically
- → Powerful Functions: Built-in formulas for calculations and data analysis
- → Free: No purchase required, just a Google account
WHAT CAN YOU CREATE?
- → Budgets and expense trackers
- → Project schedules and timelines
- → Data analysis and reports
- → Inventory management
- → Grade books and student rosters
- → Sales tracking and forecasting
GETTING STARTED
ACCESS GOOGLE SHEETS:
- Visit sheets.google.com
- OR click the Google Apps icon (9 dots) in Gmail → Sheets
- Sign in with your Google account
CREATE A NEW SPREADSHEET:
- → Click the colorful "+" icon (Blank spreadsheet)
- → OR choose from a template (budget, schedule, to-do list, etc.)
- → Your spreadsheet starts with "Untitled spreadsheet" - click to rename
MAKE A COPY:
- Open the spreadsheet you want to copy
- Click "File" → "Make a copy"
- Rename the copy
- Choose where to save it (optional)
- Click "Make a copy"
Perfect for using templates or working from a shared spreadsheet!
UNDERSTANDING SPREADSHEETS
KEY TERMS:
- → Cell: A single box where you enter data (intersection of row and column)
- → Row: Horizontal line of cells (numbered 1, 2, 3...)
- → Column: Vertical line of cells (labeled A, B, C...)
- → Cell Reference: Column letter + Row number (e.g., A1, B2, C3)
- → Range: Group of cells (e.g., A1:C3 means all cells from A1 to C3)
- → Sheet: A single page/tab within your spreadsheet
WORKING WITH ROWS & COLUMNS
INSERT ROWS OR COLUMNS:
- Right-click a row number or column letter
- Click "Insert 1 row above/below" or "Insert 1 column left/right"
- A new row/column appears and existing data shifts
DELETE ROWS OR COLUMNS:
- Right-click a row number or column letter
- Click "Delete row" or "Delete column"
- The row/column is removed and data shifts to fill the gap
Remember: You can always undo with Ctrl/⌘+Z
FREEZE ROWS OR COLUMNS:
Keep headers visible while scrolling through data:
- Click "View" → "Freeze"
- Choose "1 row", "2 rows", "1 column", or "Up to current row/column"
- Frozen sections stay in place when you scroll
RESIZE ROWS OR COLUMNS:
- → Hover between row numbers or column letters until you see resize cursor
- → Click and drag to adjust size
- → OR right-click → "Resize row/column" and enter exact pixel size
FORMATTING YOUR SPREADSHEET
TEXT FORMATTING:
ALIGNMENT:
Select cells, then click alignment buttons in toolbar:
- → Left align: Standard for text
- → Center: Headers and titles
- → Right align: Numbers and currency
- → Vertical align: Top, middle, or bottom of cell
NUMBER FORMATTING:
Click "Format" → "Number" and choose:
- → Number: Standard numbers (1,000.12)
- → Currency: Money format ($1,000.12)
- → Percent: Percentage (10.12%)
- → Date: Various date formats
- → Custom: Create your own format
MERGE CELLS:
- Select cells you want to merge
- Click "Format" → "Merge cells"
- Choose "Merge all", "Merge horizontally", or "Merge vertically"
Great for creating section headers!
BORDERS:
- Select cells
- Click border icon in toolbar
- Choose border style, color, and thickness
MANAGING SHEETS
WORK WITH MULTIPLE SHEETS:
- → Add sheet: Click the "+" button at bottom left
- → Rename sheet: Right-click sheet tab → "Rename"
- → Duplicate sheet: Right-click sheet tab → "Duplicate"
- → Delete sheet: Right-click sheet tab → "Delete"
- → Change tab color: Right-click sheet tab → "Change color"
- → Move sheet: Click and drag sheet tab to reorder
DATA VALIDATION
Data validation controls what type of information can be entered into cells.
CREATE A DROPDOWN LIST:
- Select the cells where you want the dropdown
- Click "Data" → "Data validation"
- Under Criteria, select "List of items"
- Enter your list items separated by commas (e.g., "Yes, No, Maybe")
- Check "Show dropdown list in cell"
- Click "Save"
VALIDATE NUMBER RANGES:
- Select cells
- Click "Data" → "Data validation"
- Select "Number" → choose condition (between, greater than, etc.)
- Enter minimum and maximum values
- Choose to show warning or reject input
- Click "Save"
REMOVE VALIDATION:
- Select cells with validation
- Click "Data" → "Data validation"
- Click "Remove validation"
SORTING & FILTERING DATA
SORT DATA:
Organize your data in ascending or descending order:
- → Sort entire sheet: Click column letter → "Data" → "Sort sheet" → Choose A to Z or Z to A
- → Sort range: Select cells → "Data" → "Sort range" → Choose options
⚠️ Important:
When sorting, make sure to select all related data to keep rows together!
CREATE A FILTER:
Show only specific data based on criteria:
- Select your data range (including headers)
- Click "Data" → "Create a filter"
- Filter icons appear in header row
- Click filter icon → Check/uncheck values to show/hide
- Click "OK"
FILTER BY CONDITION:
Filter based on text, numbers, or dates:
- Click filter icon
- Select "Filter by condition"
- Choose condition (contains, greater than, etc.)
- Enter value
- Click "OK"
FILTER VIEWS:
Save different filter configurations:
- Click "Data" → "Filter views" → "Create new filter view"
- Set up your filters
- Name the view
- Switch between views using dropdown at top
Filter views don't affect how others see the sheet!
FORMULAS & FUNCTIONS
Formulas perform calculations using cell references and operators. All formulas start with =
Example: =A1+B1 adds values in cells A1 and B1
BASIC OPERATORS:
+ Addition: =A1+B1
- Subtraction: =A1-B1
* Multiplication: =A1*B1
/ Division: =A1/B1
^ Power: =A1^2
() Parentheses for order
SUM FUNCTION:
Add numbers quickly:
=SUM(A1:A10)
Adds all values from A1 through A10
- Click cell where you want the total
- Type
=SUM( - Select the range of cells to add
- Type
)and press Enter
AVERAGE FUNCTION:
Calculate the average:
=AVERAGE(B1:B10)
Finds the average of values from B1 through B10
COUNTIF FUNCTION:
Count cells that meet a condition:
=COUNTIF(C1:C10, "Yes")
Counts how many cells contain "Yes"
- Type
=COUNTIF( - Select the range to search
- Type comma, then the criteria in quotes
- Type
)and press Enter
OTHER USEFUL FUNCTIONS:
- →
=MAX(range)- Largest value - →
=MIN(range)- Smallest value - →
=COUNT(range)- Count numbers in range - →
=IF(condition, value_if_true, value_if_false)- Conditional logic - →
=TODAY()- Current date
Pro Tip:
Copy formulas down or across by dragging the small blue square at the bottom-right corner of a cell!
CREATING CHARTS
INSERT A CHART:
- Select the data you want to visualize (including headers)
- Click "Insert" → "Chart"
- Google Sheets suggests a chart type
- Customize using Chart Editor sidebar
CHART TYPES:
- → Column/Bar Chart: Compare values across categories
- → Line Chart: Show trends over time
- → Pie Chart: Show parts of a whole
- → Scatter Plot: Show relationship between two variables
- → Stacked Chart: Compare totals and parts
CUSTOMIZE CHART:
Use Chart Editor to modify:
- → Chart title and axis labels
- → Colors and font styles
- → Legend position
- → Data range
MOVE CHART TO OWN SHEET:
- Click the three dots on chart
- Select "Move to own sheet"
- Chart gets its own dedicated tab
COLLABORATION & SHARING
SHARE YOUR SPREADSHEET:
- Click the blue "Share" button (top-right corner)
- Add email addresses
- Choose permission level:
- • Viewer: Can only view (cannot edit or comment)
- • Commenter: Can view and add comments (cannot edit)
- • Editor: Full access to edit, comment, and share
- Add a message (optional)
- Click "Send"
SHARE VIA LINK:
- Click "Share"
- Click "Copy link"
- Change link access:
- • Restricted: Only people you add can access
- • Anyone with the link: Anyone with link can access
- Share the link
COMMENTS:
- Right-click cell → "Comment" (or Ctrl/⌘+Alt+M)
- Type your comment or question
- Tag someone with @ (e.g., @victor)
- Click "Comment"
- Resolve comments when addressed by clicking "Resolve"
Real-Time Collaboration: See others' cursors and edits live! Multiple people can work simultaneously.
VERSION HISTORY
VIEW EDIT HISTORY:
- Click "File" → "Version history" → "See version history"
- OR click "All changes saved in Drive" at the top
- Browse versions by date and time
- Click a version to preview it
- See who made each change (color-coded)
RESTORE OLD VERSION:
- Open version history
- Find the version you want
- Click "Restore this version"
- Confirm restoration
Don't worry - the current version is saved in history too!
NAME A VERSION:
- Open version history
- Click three dots next to a version
- Select "Name this version"
- Give it a meaningful name
DOWNLOADING & FILE FORMATS
DOWNLOAD YOUR SPREADSHEET:
- Click "File" → "Download"
- Choose format:
FILE FORMATS:
- → Microsoft Excel (.xlsx): Open in Excel, compatible with most systemsBest for: Sharing with Excel users
- → PDF (.pdf): Preserves formatting, cannot be editedBest for: Final reports, printing
- → CSV (.csv): Plain text, data only (no formatting)Best for: Importing into databases
- → Web Page (.html): Publish as webpageBest for: Websites, online viewing
Remember: Your original Google Sheet stays in Drive - downloading creates a separate copy
KEYBOARD SHORTCUTS
ESSENTIAL SHORTCUTS:
TROUBLESHOOTING
COMMON PROBLEMS:
"Formula returns an error"
- • Check for typos in formula
- • Make sure parentheses are balanced
- • Verify cell references are correct
- • Look up error code (e.g., #DIV/0! means division by zero)
"Can't edit a shared spreadsheet"
- • Check if you're in "Viewer" or "Commenter" mode
- • Ask the owner to change your permission to "Editor"
- • Make sure you're signed into the correct Google account
"Changes aren't saving"
- • Check your internet connection
- • Look for "All changes saved in Drive" at top
- • If it says "Trying to connect" - wait or refresh
"Accidentally deleted data"
- • Press Ctrl/⌘+Z to undo
- • Use version history to restore previous version
- • Check Google Drive Trash if entire sheet was deleted