Dashboard Mode - Getting data from sources
Dashboard Goal
Understand how to import and link data from different sources into Excel to create a combined view for analysis.
Understand how to import and link data from different sources into Excel to create a combined view for analysis.
| Source | Product | Sales | Region |
|---|---|---|---|
| Sheet1 | Apples | 100 | North |
| Sheet1 | Bananas | 150 | South |
| CSV Import | Oranges | 200 | East |
| CSV Import | Grapes | 120 | West |
| Web Query | Mangoes | 180 | North |
| Web Query | Pineapples | 160 | South |
=SUM(C2:C7) sums all sales from combined data.=SUMIF(A2:A7,"Sheet1",C2:C7) sums sales only from Sheet1.=SUMIF(A2:A7,"CSV Import",C2:C7) sums sales only from CSV Import.=SUMIF(A2:A7,"Web Query",C2:C7) sums sales only from Web Query.+----------------------+---------------------+ | Total Sales | Combined Data | | (KPI Card) | (Table) | +----------------------+---------------------+ | Sheet1 Sales | CSV Import Sales | Web Query Sales | | (Formula) | (Formula) | (Formula) | +--------------+------------------+----------------+
Adding a filter by Source lets you see sales only from selected data sources. When you select a source, the combined data table and all sales formulas update to show only that source's data.
If you add a filter for Source = CSV Import, which components update?