0
0
Google Sheetsspreadsheet~20 mins

Edit history and version control in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Version Control Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
1:30remaining
Understanding Edit History in Google Sheets
What does the 'Version history' feature in Google Sheets allow you to do?
ASee all changes made to the sheet, who made them, and restore previous versions
BAutomatically save a backup copy of the sheet to your computer
CTrack changes only made by you and ignore others' edits
DPrevent others from editing the sheet after you open it
Attempts:
2 left
💡 Hint
Think about how you can recover an earlier version if a mistake was made.
🎯 Scenario
intermediate
2:00remaining
Restoring a Previous Version
You accidentally deleted important data in your Google Sheet. Which steps correctly restore the sheet to an earlier version?
AGo to File > Version history > See version history, select the desired version, and click Restore this version
BUse Undo button repeatedly until the data reappears
CDownload the sheet and open it in Excel to recover data
DDelete the sheet and create a new one from scratch
Attempts:
2 left
💡 Hint
Think about the built-in feature that saves versions automatically.
📊 Formula Result
advanced
1: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?
A=COUNT(A:A)
B=NOW()
C=TODAY()
D=MAX(B:B)
Attempts:
2 left
💡 Hint
You want the latest timestamp from column B.
data_analysis
advanced
1: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'?
A=COUNT(Alice)
B=COUNTIF(A:A, "Alice")
C=SUMIF(B:B, "Alice")
D=FILTER(A:A, B:B="Alice")
Attempts:
2 left
💡 Hint
You want to count cells matching a name in a column.
Function Choice
expert
2: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?
AAdd a new sheet with notes about changes manually
BInsert comments in cells to describe changes
CUse the 'Name current version' feature in Version history to add descriptive names
DUse conditional formatting to highlight changes
Attempts:
2 left
💡 Hint
Think about the feature designed specifically for version descriptions.