1. Import an employee roster from a public CSV URL
| ID | Name | Department | Hire Date | Salary | Status |
| 1001 | Alice Johnson | Sales | 2020-03-15 | 75000 | Active |
| 1002 | Bob Smith | Engineering | 2019-07-22 | 95000 | Active |
| 1003 | Carol Williams | Marketing | 2021-01-10 | 68000 | Active |
=IMPORTDATA("https://example.com/employees.csv")Result: A range containing all columns (ID, Name, Department, Hire Date, Salary, Status) for each employee.
IMPORTDATA fetches the CSV file from the URL and automatically parses it using the default comma delimiter. Each row and column is preserved as it appears in the source file, making the data immediately available for analysis or reference.