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
If you enter this formula in your current sheet:
What will be the output in your sheet?
1a2b3c4d5e6f7g8h9i0j. In that spreadsheet, the range Sheet1!A1:B2 contains:A1: 10B1: 20A2: 30B2: 40If you enter this formula in your current sheet:
=IMPORTRANGE("1a2b3c4d5e6f7g8h9i0j", "Sheet1!A1:B2")What will be the output in your sheet?
Attempts:
2 left
💡 Hint
IMPORTRANGE imports the exact range as a block of cells.
✗ Incorrect
IMPORTRANGE imports the specified range as a block of cells with their values. Since the range is A1:B2 with values 10,20 in first row and 30,40 in second, the output is a 2x2 array with those numbers.
❓ Function Choice
intermediate2:00remaining
Which formula correctly imports data from another spreadsheet?
You want to import cells A1 to A5 from a spreadsheet with ID
abc123xyz789 and sheet named Data. Which formula below will do this correctly?Attempts:
2 left
💡 Hint
IMPORTRANGE needs the spreadsheet ID first, then the range as text.
✗ Incorrect
IMPORTRANGE requires the spreadsheet ID as the first argument (in quotes), and the range string as the second argument (also in quotes). Only option C follows this syntax correctly.
🎯 Scenario
advanced2:00remaining
You imported data but see a #REF! error. What is the likely cause?
You used
=IMPORTRANGE("1x2y3z4w5v6u7t8s9r0q", "Sheet1!A1:C10") but the cell shows #REF! error. What is the most common reason for this error?Attempts:
2 left
💡 Hint
IMPORTRANGE requires you to allow access the first time you use it.
✗ Incorrect
When you first use IMPORTRANGE with a new spreadsheet, Google Sheets asks you to grant permission. Until you do, it shows #REF! error. The other options are incorrect because the ID format is valid, the range string must be quoted, and IMPORTRANGE can import large ranges.
📊 Formula Result
advanced2:30remaining
What is the output of this formula with IMPORTRANGE and QUERY?
You have a spreadsheet with ID
You enter this formula:
What will be the output?
sheet123id456. In that spreadsheet, Sales!A1:B4 contains:A1: ProductB1: AmountA2: AppleB2: 100A3: BananaB3: 150A4: AppleB4: 200You enter this formula:
=QUERY(IMPORTRANGE("sheet123id456", "Sales!A1:B4"), "select Col1, sum(Col2) where Col1 = 'Apple' group by Col1", 1)What will be the output?
Attempts:
2 left
💡 Hint
QUERY with header row 1 returns headers and aggregated data.
✗ Incorrect
IMPORTRANGE imports the data including headers. QUERY with header=1 treats first row as headers. The query groups by Product 'Apple' and sums Amount 100+200=300. The output includes headers 'Product' and 'sum' and one data row.
❓ data_analysis
expert2:30remaining
How many rows will be imported by this IMPORTRANGE formula?
You have a spreadsheet with ID
You enter this formula:
How many rows and columns will be imported?
xyz987abc654. The sheet Data has 1000 rows filled in columns A to D.You enter this formula:
=IMPORTRANGE("xyz987abc654", "Data!A2:D501")How many rows and columns will be imported?
Attempts:
2 left
💡 Hint
Count rows from A2 to D501 inclusive.
✗ Incorrect
The range A2:D501 includes rows 2 through 501, which is 501 - 2 + 1 = 500 rows. Columns A to D is 4 columns. So the imported data is 500 rows by 4 columns.