Bird
Raised Fist0
Google Sheetsspreadsheet~8 mins

Edit history and version control in Google Sheets - Dashboard Guide

Choose your learning style10 modes available

Start learning this pattern below

Jump into concepts and practice - no test required

or
Recommended
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Dashboard Mode - Edit history and version control
Goal

Track changes made to a sales data sheet over time and see the latest version of each entry. This helps understand who changed what and when, ensuring data accuracy and easy recovery of past versions.

Sample Data
Entry IDProductSalesEditorEdit Date
101Apples150Alice2024-06-01
101Apples160Bob2024-06-03
102Bananas200Alice2024-06-02
103Cherries120Charlie2024-06-01
103Cherries130Bob2024-06-04
104Dates90Alice2024-06-05
Dashboard Components
  • Latest Version Table: Shows the most recent edit for each Entry ID.
    Formula for Sales (in row 2, assuming data in A2:E7):
    =FILTER(A2:E7, E2:E7=ARRAYFORMULA(MAXIFS(E2:E7, A2:A7, A2:A7)))
    Note: Since MAXIFS does not work directly for each Entry ID in FILTER, we use a helper formula below.
  • Helper Column (F): Latest Edit Date per Entry ID
    In F2:
    =MAXIFS($E$2:$E$7, $A$2:$A$7, A2)
    Drag down to F7.
    This finds the latest edit date for each Entry ID.
  • Filtered Latest Rows:
    In G1: "Latest Entries"
    In G2:
    =FILTER(A2:E7, E2:E7=F2:F7)
    This shows only rows where Edit Date matches the latest date per Entry ID.
  • KPI Card: Total Latest Sales
    Formula:
    =SUM(INDEX(FILTER(C2:C7, E2:E7=F2:F7), 0))
    This sums sales from the latest versions only.
  • KPI Card: Number of Edited Entries
    Formula:
    =COUNTA(UNIQUE(A2:A7))
    Shows how many unique entries have edits.
Dashboard Layout
+----------------------+----------------------+
|   KPI: Total Sales   |  KPI: Edited Entries |
+----------------------+----------------------+
|                                              |
|           Latest Version Table                |
|                                              |
+----------------------------------------------+
Interactivity

Add a filter dropdown for Product. When a product is selected, the Latest Version Table and KPI cards update to show data only for that product. This helps focus on changes and sales for a specific product.

Self Check

If you add a filter for Product = "Cherries", which rows appear in the Latest Version Table and what is the Total Latest Sales?

Answer: Only the row with Entry ID 103 and Edit Date 2024-06-04 (Sales 130) appears. Total Latest Sales is 130.

Key Result
Dashboard shows latest edits per entry with total sales and edit counts, supporting product filtering.

Practice

(1/5)
1. What does the Version history feature in Google Sheets allow you to do?
easy
A. See past changes and restore previous versions of the spreadsheet
B. Automatically save your spreadsheet to your computer
C. Share the spreadsheet with other users
D. Create charts and graphs from your data

Solution

  1. Step 1: Understand the purpose of Version history

    Version history shows all changes made to the spreadsheet over time, including who made them and when.
  2. Step 2: Identify the main function of Version history

    It allows users to view and restore previous versions, helping recover lost data or undo mistakes.
  3. Final Answer:

    See past changes and restore previous versions of the spreadsheet -> Option A
  4. Quick Check:

    Version history = view and restore changes [OK]
Hint: Version history = past changes + restore [OK]
Common Mistakes:
  • Confusing version history with sharing options
  • Thinking it saves files locally
  • Assuming it creates charts
2. Which menu path do you use to access the version history in Google Sheets?
easy
A. Edit > Undo
B. File > Version history > See version history
C. View > Freeze
D. Insert > Chart

Solution

  1. Step 1: Recall the menu for version history

    Version history is found under the File menu in Google Sheets.
  2. Step 2: Identify the correct submenu

    The correct submenu is Version history, then See version history.
  3. Final Answer:

    File > Version history > See version history -> Option B
  4. Quick Check:

    Version history menu = File > Version history > See version history [OK]
Hint: Version history is under File menu [OK]
Common Mistakes:
  • Looking under Edit or View menus
  • Confusing Undo with version history
  • Selecting Insert menu options
3. You open the version history and see a version labeled "Edited by Alice at 3:00 PM". What can you do with this version?
medium
A. Restore the spreadsheet to how it was at 3:00 PM
B. Export it as a PDF directly from version history
C. Automatically merge it with the current version
D. Delete the entire spreadsheet permanently

Solution

  1. Step 1: Understand the function of a saved version

    Each version in history represents the spreadsheet state at a specific time.
  2. Step 2: Identify what restoring a version does

    Restoring replaces the current sheet with the saved state from that time.
  3. Final Answer:

    Restore the spreadsheet to how it was at 3:00 PM -> Option A
  4. Quick Check:

    Version restore = revert to past state [OK]
Hint: Restore means revert to saved time state [OK]
Common Mistakes:
  • Thinking you can delete the whole file from version history
  • Assuming versions merge automatically
  • Believing you can export directly from version history
4. You tried to restore an old version but the spreadsheet did not change. What is the most likely reason?
medium
A. Version history is only available for 24 hours
B. You clicked 'Restore' but did not confirm the action
C. You restored a version identical to the current one
D. You need to download the version first before restoring

Solution

  1. Step 1: Understand what happens when restoring a version

    Restoring replaces the current sheet with the selected version's content.
  2. Step 2: Consider why no change appears

    If the restored version is the same as the current one, no visible change occurs.
  3. Final Answer:

    You restored a version identical to the current one -> Option C
  4. Quick Check:

    Restoring same version = no visible change [OK]
Hint: Restoring identical version shows no change [OK]
Common Mistakes:
  • Thinking restore needs confirmation every time
  • Believing version history expires in 24 hours
  • Assuming download is required before restore
5. You want to keep a permanent copy of a specific version of your Google Sheet before making big changes. What is the best way to do this?
hard
A. Rename the current spreadsheet to save the version
B. Share the spreadsheet with yourself to save the version
C. Download the spreadsheet as Excel before editing
D. Make a copy of the spreadsheet from the version history at that version

Solution

  1. Step 1: Access the desired version in version history

    Open the version history and select the version you want to keep.
  2. Step 2: Use the 'Make a copy' feature

    Click 'Make a copy' next to that version in the version history panel to save it as a new spreadsheet.
  3. Final Answer:

    Make a copy of the spreadsheet from the version history at that version -> Option D
  4. Quick Check:

    Copy version to new file = permanent save [OK]
Hint: Use 'Make a copy' to save version permanently [OK]
Common Mistakes:
  • Renaming does not save old versions
  • Downloading before editing loses version context
  • Sharing does not create a saved copy