0
0
Google Sheetsspreadsheet~20 mins

File sharing and permissions in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
File Sharing Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🎯 Scenario
intermediate
1: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?
AGive them 'Viewer' access
BGive them 'Editor' access
CGive them 'Commenter' access
DMake the file public on the web
Attempts:
2 left
💡 Hint
Think about the permission that allows seeing but not changing.
🧠 Conceptual
intermediate
1: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?
AViewer
BEditor
COwner
DCommenter
Attempts:
2 left
💡 Hint
This permission is between viewing and editing.
📊 Formula Result
advanced
2: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"
A=B2=Editor
B=B2="Editor"
C=IF(B2=Editor, TRUE, FALSE)
D=IF(B2="Editor", TRUE, FALSE)
Attempts:
2 left
💡 Hint
Check how text strings are compared in formulas.
data_analysis
advanced
2: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?
A=COUNTIF(B2:B20, "Editor")
B=COUNT(B2:B20, "Editor")
C=SUMIF(B2:B20, "Editor")
D=COUNTIFS(B2:B20, Editor)
Attempts:
2 left
💡 Hint
Look for the function that counts cells matching a condition.
Function Choice
expert
2: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?
A=ARRAYFORMULA(IF(B2:B20="Editor", A2:A20, ""))
B=VLOOKUP("Editor", B2:B20, 1, FALSE)
C=FILTER(A2:A20, B2:B20="Editor")
D=QUERY(A2:B20, "SELECT A WHERE B='Editor'")
Attempts:
2 left
💡 Hint
Think about a function that filters rows based on a condition.