Complete the formula to import data from another Google Sheet using its URL.
=IMPORTRANGE([1], "Sheet1!A1:B10")
The first argument of IMPORTRANGE must be the URL of the source sheet as a text string.
Complete the formula to link a specific cell from another sheet using IMPORTRANGE.
=IMPORTRANGE("https://docs.google.com/spreadsheets/d/abc123xyz/edit", [1])
The range argument must be a text string with sheet name and cell, inside quotes.
Fix the error in the formula to correctly link data from another sheet.
=IMPORTRANGE("https://docs.google.com/spreadsheets/d/abc123xyz/edit", [1])
The range must be a string with sheet name and range inside quotes.
Fill both blanks to create a formula that imports data and sums the first column.
=SUM(IMPORTRANGE([1], [2]))
The first blank is the URL in quotes, the second blank is the range with sheet name and range in quotes.
Fill all three blanks to create a formula that imports data, filters rows where column B is greater than 50, and sums column A.
=SUM(FILTER(IMPORTRANGE([1], [2]), IMPORTRANGE([1], [3]) > 50))
The first blank is the URL in quotes used twice. The second blank is the range for column A to sum. The third blank is the range for column B to filter values greater than 50.