Dashboard Mode - Saving and file formats (xlsx, csv)
Goal
Understand how to save Excel files in different formats and when to use XLSX or CSV.
Jump into concepts and practice - no test required
Understand how to save Excel files in different formats and when to use XLSX or CSV.
| Product | Region | Sales |
|---|---|---|
| Apples | North | 100 |
| Bananas | South | 150 |
| Cherries | East | 200 |
| Dates | West | 175 |
| Elderberries | North | 125 |
=SUM(C2:C6)=SUMIF(B2:B6, "North", C2:C6) for North (225)=SUMIF(B2:B6, "South", C2:C6) for South (150)=SUMIF(B2:B6, "East", C2:C6) for East (200)=SUMIF(B2:B6, "West", C2:C6) for West (175)+----------------------+----------------------+ | Total Sales | File Formats Info | | (KPI) | XLSX vs CSV | +----------------------+----------------------+ | Sales by Region Table | | | +------------------------------------------+
Adding a filter by Region updates the Sales by Region table and the Total Sales KPI to show only selected regions. The File Formats Info box remains static as it explains concepts.
If you add a filter for Region = North, which components update?
.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?