Challenge - 5 Problems
Version Control Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate1:30remaining
Understanding Edit History in Google Sheets
What does the 'Version history' feature in Google Sheets allow you to do?
Attempts:
2 left
💡 Hint
Think about how you can recover an earlier version if a mistake was made.
✗ Incorrect
Version history shows all edits, who made them, and lets you restore older versions if needed.
🎯 Scenario
intermediate2:00remaining
Restoring a Previous Version
You accidentally deleted important data in your Google Sheet. Which steps correctly restore the sheet to an earlier version?
Attempts:
2 left
💡 Hint
Think about the built-in feature that saves versions automatically.
✗ Incorrect
The correct way is to use Version history to restore the sheet to a previous saved state.
📊 Formula Result
advanced1:30remaining
Tracking Last Edit Time with a Formula
Which formula correctly shows the last time a cell in column A was edited, assuming you have a script that updates a timestamp in column B?
Attempts:
2 left
💡 Hint
You want the latest timestamp from column B.
✗ Incorrect
MAX(B:B) returns the latest (maximum) timestamp from column B, showing the last edit time.
❓ data_analysis
advanced1:30remaining
Analyzing Edit History Data
You exported the edit history data showing editor names and timestamps. Which formula counts how many edits were made by 'Alice'?
Attempts:
2 left
💡 Hint
You want to count cells matching a name in a column.
✗ Incorrect
COUNTIF counts how many cells in a range match a given text, here 'Alice'.
❓ Function Choice
expert2:00remaining
Choosing the Best Function for Version Control Notes
You want to add notes to each version in Google Sheets' version history to describe changes. Which method is best to do this?
Attempts:
2 left
💡 Hint
Think about the feature designed specifically for version descriptions.
✗ Incorrect
Google Sheets lets you name versions in Version history to add notes about changes.