Complete the formula to import data from another spreadsheet using IMPORTRANGE.
=IMPORTRANGE([1], "Sheet1!A1:B10")
The first argument of IMPORTRANGE is the URL of the other spreadsheet as a text string.
Complete the formula to import range from a sheet named 'Data' in another spreadsheet.
=IMPORTRANGE("https://docs.google.com/spreadsheets/d/abc123xyz", [1])
The range argument must be a text string with the sheet name and cell range in quotes.
Fix the error in the IMPORTRANGE formula to correctly import cells A1 to A5 from 'Sheet2'.
=IMPORTRANGE("https://docs.google.com/spreadsheets/d/abc123xyz", [1])
The range must be a string with the sheet name and range separated by an exclamation mark, inside quotes.
Fill both blanks to import data from 'Sheet3' range B2:D10 in another spreadsheet.
=IMPORTRANGE([1], [2])
The first blank is the spreadsheet URL in quotes. The second blank is the sheet name and range in quotes.
Fill all three blanks to import range A1:C5 from 'Sales' sheet in another spreadsheet and assign it to cell A1.
A1 = [1]([2], [3])
Use IMPORTRANGE function with the spreadsheet URL and the sheet name with range as strings.