Challenge - 5 Problems
Label Mastery Badge
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
What is the output of this LABEL formula?
Given the formula
=LABEL(A1:C1, {"Name", "Age", "City"}) in Google Sheets, what will be the output in the range A1:C1?Google Sheets
=LABEL(A1:C1, {"Name", "Age", "City"})Attempts:
2 left
💡 Hint
Check if LABEL is a valid function in Google Sheets.
✗ Incorrect
Google Sheets does not have a function named LABEL. Trying to use it will result in a #NAME? error.
🎯 Scenario
intermediate2:00remaining
How to add headers to a data range without typing in cells?
You want to add column headers "Product", "Price", "Quantity" above your data in cells A2:C10 without manually typing them in A1:C1. Which formula approach can you use?
Attempts:
2 left
💡 Hint
Think about combining headers and data into one array.
✗ Incorrect
The ARRAYFORMULA with curly braces and a semicolon stacks the header row above the data range dynamically.
❓ Function Choice
advanced2:00remaining
Which function can dynamically label columns based on the first row?
You want to create a dynamic named range that uses the first row as column headers for your data in A1:D100. Which function helps you extract the headers as a list?
Attempts:
2 left
💡 Hint
You want to get the entire first row as a horizontal array.
✗ Incorrect
INDEX with row 1 and column 0 returns the entire first row as an array of headers.
❓ data_analysis
advanced2:00remaining
How many columns will be labeled by this formula?
Given the formula
=ARRAYFORMULA({"ID", "Name", "Score"; A2:C10}) in cell A1, how many columns will have headers labeled?Google Sheets
=ARRAYFORMULA({"ID", "Name", "Score"; A2:C10})Attempts:
2 left
💡 Hint
Count the number of items in the header array.
✗ Incorrect
The header array has 3 items, so 3 columns will be labeled.
🧠 Conceptual
expert2:00remaining
What error occurs when using LABEL function in Google Sheets?
You enter
=LABEL(A1:C1, {"A", "B", "C"}) in Google Sheets. What error message will you see?Google Sheets
=LABEL(A1:C1, {"A", "B", "C"})Attempts:
2 left
💡 Hint
Check if LABEL is a built-in function in Google Sheets.
✗ Incorrect
LABEL is not a valid function in Google Sheets, so it returns a #NAME? error.