Complete the formula to import data from a CSV URL.
=IMPORTDATA([1])The IMPORTDATA function requires the URL as a text string inside quotes.
Complete the formula to import data from a TSV URL.
=IMPORTDATA([1])IMPORTDATA works for both CSV and TSV files by providing the correct URL as a string.
Fix the error in the formula to correctly import CSV data.
=IMPORTDATA([1])The URL must be a text string inside quotes. Without quotes, it causes an error.
Fill both blanks to import data from a CSV URL stored in cell A1.
=IMPORTDATA([1][2])
When the URL is in a cell, just use the cell reference without quotes inside IMPORTDATA.
Fill all three blanks to import data from a URL in cell B2 and convert it to uppercase.
=ARRAYFORMULA(UPPER([1]([2][3])))
Use IMPORTDATA with the cell reference B2 (no quotes) inside UPPER wrapped by ARRAYFORMULA to convert all text to uppercase.