Complete the formula to import data from another sheet named 'Data' in the same spreadsheet.
=IMPORTRANGE([1], "Data!A1:B10")
When importing data from another sheet in the same spreadsheet, the spreadsheet URL is empty (""), and you specify the sheet name and range.
Complete the formula to link a cell from Google Sheets to Google Slides using the Sheets API placeholder format.
[1]The correct placeholder format for linking Sheets data in Slides is {{SheetName!Cell}}, for example {{Sheet1!A1}}.
Fix the error in this formula that tries to link a range from Sheets to Slides but uses incorrect syntax.
=[1]The IMPORTRANGE function requires two arguments: the spreadsheet URL and the range string in quotes.
Fill both blanks to create a formula that links a named range 'SalesData' from another spreadsheet.
=IMPORTRANGE([1], [2])
The first argument is the URL of the other spreadsheet, and the second is the range string including the named range and its cell range.
Fill all three blanks to create a dynamic link in Slides that updates with the value in cell B2 of sheet 'Summary'.
=[1]&"[2]"&[3]
Use INDIRECT to get the cell reference dynamically, the cell address as a string, and TEXT to format the value for Slides.