Challenge - 5 Problems
IMPORTRANGE Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
What is the output of this IMPORTRANGE formula?
You have a spreadsheet with ID
1a2b3c4d5e6f7g8h9i0j. The sheet named Data has values A1=10, A2=20. What will be the result in your current sheet if you enter this formula in cell A1?=IMPORTRANGE("1a2b3c4d5e6f7g8h9i0j", "Data!A1:A2")Attempts:
2 left
💡 Hint
IMPORTRANGE imports data from another spreadsheet if you have access and use correct syntax.
✗ Incorrect
IMPORTRANGE imports the exact values from the specified range in the other spreadsheet. Since the range is correct and you have access, the values 10 and 20 appear in A1 and A2.
❓ Function Choice
intermediate2:00remaining
Which formula correctly imports cells B1 to B5 from another spreadsheet?
You want to import cells B1 to B5 from the sheet named
Sheet1 in another spreadsheet with ID abcd1234efgh5678. Which formula below is correct?Attempts:
2 left
💡 Hint
The range must use a colon (:) between start and end cells.
✗ Incorrect
The correct range format uses an exclamation mark after the sheet name and a colon between start and end cells, like "Sheet1!B1:B5".
🎯 Scenario
advanced2:00remaining
You want to import data but get a #REF! error. What is the cause?
You entered the formula
=IMPORTRANGE("xyz987654321", "Sales!A1:C10") but see a #REF! error. What is the most likely reason?Attempts:
2 left
💡 Hint
IMPORTRANGE requires permission to access data from another spreadsheet.
✗ Incorrect
When you use IMPORTRANGE for the first time with a new spreadsheet, Google Sheets asks you to grant permission. Until you do, it shows #REF! error.
📊 Formula Result
advanced2:00remaining
What is the output of this IMPORTRANGE combined with QUERY?
You have a spreadsheet with ID
What will this formula return?
123abc456def and sheet Inventory with columns A (Item), B (Quantity). You enter this formula:=QUERY(IMPORTRANGE("123abc456def", "Inventory!A1:B10"), "select Col1 where Col2 > 5", 1)What will this formula return?
Attempts:
2 left
💡 Hint
QUERY can filter imported data if permission is granted.
✗ Incorrect
IMPORTRANGE imports the data, and QUERY filters it to show only items with quantity > 5. The header row is included because of the last argument 1.
❓ data_analysis
expert2:00remaining
How many rows will be imported by this formula?
You use this formula:
The source sheet
=IMPORTRANGE("zxy987654321", "Sheet2!A2:A")The source sheet
Sheet2 has 100 rows filled in column A starting from A1. How many rows will be imported?Attempts:
2 left
💡 Hint
The range starts at A2 and goes down to the last filled row.
✗ Incorrect
The range "A2:A" means from row 2 down all rows in column A. Since rows 1 to 100 are filled, starting at A2 means 99 rows imported.