Complete the formula to import data from another sheet named 'Sales'.
=IMPORTRANGE("[1]", "Sales!A1:C10")
The IMPORTRANGE function needs the URL of the external spreadsheet as the first argument to import data.
Complete the formula to filter imported data where sales are greater than 1000.
=FILTER(IMPORTRANGE("https://docs.google.com/spreadsheets/d/abc123xyz", "Sales!A2:B100"), [1] > 1000)
The FILTER function needs the imported range of sales values to compare with 1000. Column B contains sales, so repeat IMPORTRANGE for Sales!B2:B100.
Fix the error in this formula that tries to sum imported sales data.
=SUM([1]("https://docs.google.com/spreadsheets/d/abc123xyz", "Sales!B2:B100"))
To sum imported data from another sheet, use IMPORTRANGE to get the range, then SUM to add it up.
Fill both blanks to create a formula that imports data and returns only unique customer names.
=UNIQUE([1]("https://docs.google.com/spreadsheets/d/abc123xyz", [2]))
Use IMPORTRANGE to import the customer names from the 'Customers' sheet range, then UNIQUE to get distinct names.
Fill all three blanks to create a formula that imports sales data, filters sales over 500, and sums them.
=SUM(FILTER([1]("https://docs.google.com/spreadsheets/d/abc123xyz", [2]), [3] > 500))
IMPORTRANGE imports the sales range, FILTER selects sales over 500 using the same range, and SUM adds them up.