Complete the formula to import data from another sheet named 'Sales'.
=[1]('Sales'!A1)
The INDIRECT function lets you refer to a cell or range by text, so you can get data from another sheet by specifying its name and cell.
Complete the formula to import data from a CSV file located at 'C:\Data\report.csv'.
=[1]("C:\\Data\\report.csv")
IMPORTDATA is used to import data from CSV or TSV files by specifying the file path or URL.
Fix the error in the formula to import data from a web URL 'http://example.com/data.csv'.
=IMPORTDATA([1])The URL must be enclosed in double quotes to be recognized as a text string in the formula.
Fill both blanks to create a formula that imports data from a named range 'DataRange' in another workbook 'Book1.xlsx'.
='[[1]]Sheet1'![2]
The formula references the workbook name in square brackets and the named range to get data from that range.
Fill all three blanks to create a formula that imports data from a web API URL stored in cell A1, then filters rows where column B is greater than 100.
=FILTER(IMPORTDATA([1]), [2] > [3])
The IMPORTDATA function uses the URL in cell A1. FILTER then selects rows where column B values are greater than 100.