Challenge - 5 Problems
File Sharing Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🎯 Scenario
intermediate1:30remaining
Sharing a Google Sheet with view-only access
You want to share a Google Sheet with a colleague so they can only view the data but not edit it. Which sharing setting should you choose?
Attempts:
2 left
💡 Hint
Think about the permission that allows seeing but not changing.
✗ Incorrect
Giving 'Viewer' access lets someone see the file but not make any changes.
🧠 Conceptual
intermediate1:30remaining
Understanding permission levels in Google Sheets
Which permission level allows a user to add comments but not edit the content of a Google Sheet?
Attempts:
2 left
💡 Hint
This permission is between viewing and editing.
✗ Incorrect
'Commenter' permission lets users add comments but not change the sheet data.
📊 Formula Result
advanced2:00remaining
Formula to check if a user has edit access
You have a list of email addresses in column A and their access levels in column B (values: 'Viewer', 'Commenter', 'Editor'). Which formula in cell C2 correctly returns TRUE if the user in A2 has 'Editor' access, and FALSE otherwise?
Google Sheets
=B2="Editor"Attempts:
2 left
💡 Hint
Check how text strings are compared in formulas.
✗ Incorrect
Option B correctly compares the text in B2 to the string "Editor" and returns TRUE or FALSE.
❓ data_analysis
advanced2:00remaining
Counting users with edit access
Given a list of users' access levels in column B (cells B2:B20), which formula correctly counts how many users have 'Editor' access?
Attempts:
2 left
💡 Hint
Look for the function that counts cells matching a condition.
✗ Incorrect
COUNTIF(range, criteria) counts how many cells match the criteria. Option A is correct.
❓ Function Choice
expert2:30remaining
Automatically notify editors when a sheet is shared
You want to create a formula or function in Google Sheets that automatically lists email addresses of users with 'Editor' access from a table with emails in column A and access levels in column B. Which function is best to extract only the emails of editors?
Attempts:
2 left
💡 Hint
Think about a function that filters rows based on a condition.
✗ Incorrect
FILTER returns only the emails where the access level is 'Editor'. QUERY also works but requires more syntax; FILTER is simpler and direct.