Complete the formula to get the manager's name from cell B2.
=VLOOKUP([1], A2:B10, 2, FALSE)
The formula looks up the value in cell B2 (employee ID) in the range A2:B10 to find the manager's name.
Complete the formula to count how many employees report directly to the manager in cell A2.
=COUNTIF(B2:B20, [1])The COUNTIF function counts how many times the manager's name in A2 appears in the range B2:B20, which lists managers for employees.
Fix the error in the formula to display the employee's full reporting chain separated by arrows.
=A2 & " -> " & [1]
The formula should look up the manager of the employee in A2, so the lookup value must be A2, not B2.
Fill both blanks to create a formula that lists employees who report to the manager in A2.
=FILTER([1], [2] = A2)
The FILTER function returns employees from A2:A20 whose manager in B2:B20 matches the manager in A2.
Fill all three blanks to create a formula that counts employees under a manager with name in cell C1 and shows 'None' if zero.
=IF(COUNTIF([1], [2]) [3] 0, COUNTIF([1], [2]), "None")
The formula counts how many employees have the manager name in C1 within B2:B30. If the count is greater than zero, it shows the count; otherwise, it shows 'None'.