Sample Data
A simple table listing names, ages, and cities of three people.
| Cell | Value |
|---|---|
| A1 | Name |
| B1 | Age |
| C1 | City |
| A2 | Alice |
| B2 | 30 |
| C2 | New York |
| A3 | Bob |
| B3 | 25 |
| C3 | Los Angeles |
| A4 | Charlie |
| B4 | 35 |
| C4 | Chicago |
Jump into concepts and practice - no test required
A simple table listing names, ages, and cities of three people.
| Cell | Value |
|---|---|
| A1 | Name |
| B1 | Age |
| C1 | City |
| A2 | Alice |
| B2 | 30 |
| C2 | New York |
| A3 | Bob |
| B3 | 25 |
| C3 | Los Angeles |
| A4 | Charlie |
| B4 | 35 |
| C4 | Chicago |
No formula used for saving or file format conversionExcel file (.xlsx): A B C 1 Name Age City 2 Alice 30 New York 3 Bob 25 Los Angeles 4 Charlie 35 Chicago CSV file (.csv) content: Name,Age,City Alice,30,New York Bob,25,Los Angeles Charlie,35,Chicago
.xlsx supports formulas, formatting, and multiple sheets, while .csv only stores plain data..xlsx is the correct choice..csv saves the file as comma-separated values, suitable for plain data sharing..csv and then open it again. What will happen to the formulas?.csv but notice that some data with commas got split into multiple columns. How can you fix this issue?