0
0
Google Sheetsspreadsheet~20 mins

Why external data expands analysis in Google Sheets - Challenge Your Understanding

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
External Data Analysis Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🎯 Scenario
intermediate
2:00remaining
Using External Data to Calculate Average Sales

You have sales data in your Google Sheet for your store. You want to include data from an external sheet that tracks online sales to get a full picture. Which formula correctly imports the external data and calculates the average total sales?

A=AVERAGE({A2:A10; IMPORTRANGE("https://docs.google.com/spreadsheets/d/abc123", "OnlineSales!B2:B10")})
B=AVERAGE(A2:A10) + IMPORTRANGE("https://docs.google.com/spreadsheets/d/abc123", "OnlineSales!B2:B10")
C=IMPORTRANGE("https://docs.google.com/spreadsheets/d/abc123", "OnlineSales!B2:B10") + AVERAGE(A2:A10)
D=SUM(A2:A10, IMPORTRANGE("https://docs.google.com/spreadsheets/d/abc123", "OnlineSales!B2:B10"))/2
Attempts:
2 left
💡 Hint

Think about how to combine ranges from your sheet and an external sheet before averaging.

📊 Formula Result
intermediate
1:30remaining
Result of Combining Local and External Data

You have the formula =SUM(A1:A3) + SUM(IMPORTRANGE("https://docs.google.com/spreadsheets/d/xyz789", "Sheet1!B1:B3")). If the local range A1:A3 contains {2, 4, 6} and the external range B1:B3 contains {1, 3, 5}, what is the result?

A20
B11
C21
DError: IMPORTRANGE not authorized
Attempts:
2 left
💡 Hint

Sum each range separately, then add the sums.

Function Choice
advanced
2:30remaining
Best Function to Import and Filter External Data

You want to import data from an external Google Sheet and only keep rows where the sales amount is greater than 100. Which formula correctly does this?

A=FILTER(IMPORTRANGE("https://docs.google.com/spreadsheets/d/abc123", "Sales!A2:C100"), IMPORTRANGE("https://docs.google.com/spreadsheets/d/abc123", "Sales!C2:C100") > 100)
B=SORT(IMPORTRANGE("https://docs.google.com/spreadsheets/d/abc123", "Sales!A2:C100"), 3, TRUE)
C=IMPORTRANGE("https://docs.google.com/spreadsheets/d/abc123", "Sales!A2:C100") > 100
D=QUERY(IMPORTRANGE("https://docs.google.com/spreadsheets/d/abc123", "Sales!A2:C100"), "select * where Col3 > 100", 0)
Attempts:
2 left
💡 Hint

Think about which function can both import and filter data in one step.

data_analysis
advanced
1:30remaining
Analyzing Combined Data from Multiple Sheets

You combined local sales data and external online sales data using =ARRAYFORMULA({A2:A10; IMPORTRANGE("https://docs.google.com/spreadsheets/d/abc123", "OnlineSales!B2:B10")}). How many total sales entries will this combined range have if both ranges have 9 rows each?

A10
B18
C9
DError: Mismatched array sizes
Attempts:
2 left
💡 Hint

Think about how many rows each range has and how they combine vertically.

🧠 Conceptual
expert
1:00remaining
Why Use External Data in Analysis?

Which of the following is the best reason to include external data in your spreadsheet analysis?

ATo get a more complete view by combining data from multiple sources
BTo avoid using built-in spreadsheet functions
CTo make formulas more complex without improving insights
DTo increase the file size and slow down calculations
Attempts:
2 left
💡 Hint

Think about the benefit of combining data from different places.