0
0
Google Sheetsspreadsheet~10 mins

Org charts in Google Sheets - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the formula to get the manager's name from cell B2.

Google Sheets
=VLOOKUP([1], A2:B10, 2, FALSE)
Drag options to blanks, or click blank then click option'
AB2
BC2
CA2
DD2
Attempts:
3 left
💡 Hint
Common Mistakes
Using the wrong cell reference for the lookup value.
Confusing the lookup range columns.
2fill in blank
medium

Complete the formula to count how many employees report directly to the manager in cell A2.

Google Sheets
=COUNTIF(B2:B20, [1])
Drag options to blanks, or click blank then click option'
AB2
BD2
CC2
DA2
Attempts:
3 left
💡 Hint
Common Mistakes
Using the wrong cell reference for the condition.
Counting the wrong range.
3fill in blank
hard

Fix the error in the formula to display the employee's full reporting chain separated by arrows.

Google Sheets
=A2 & " -> " & [1]
Drag options to blanks, or click blank then click option'
AVLOOKUP(B2, B2:C10, 2, FALSE)
BVLOOKUP(A2, B2:C10, 2, FALSE)
CVLOOKUP(A2, A2:B10, 2, FALSE)
DVLOOKUP(B2, A2:B10, 2, FALSE)
Attempts:
3 left
💡 Hint
Common Mistakes
Using the wrong lookup value cell.
Using incorrect lookup range columns.
4fill in blank
hard

Fill both blanks to create a formula that lists employees who report to the manager in A2.

Google Sheets
=FILTER([1], [2] = A2)
Drag options to blanks, or click blank then click option'
AA2:A20
BB2:B20
CC2:C20
DD2:D20
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping employee and manager ranges.
Using ranges that don't match in size.
5fill in blank
hard

Fill all three blanks to create a formula that counts employees under a manager with name in cell C1 and shows 'None' if zero.

Google Sheets
=IF(COUNTIF([1], [2]) [3] 0, COUNTIF([1], [2]), "None")
Drag options to blanks, or click blank then click option'
AB2:B30
BC1
C>
D=
Attempts:
3 left
💡 Hint
Common Mistakes
Using wrong comparison operator.
Using wrong cell reference for manager name.