Dashboard Mode - IMPORTRANGE for other spreadsheets
Goal
See sales data from another Google Sheet in this dashboard to track monthly sales across regions.
Jump into concepts and practice - no test required
See sales data from another Google Sheet in this dashboard to track monthly sales across regions.
Data is imported from another spreadsheet showing monthly sales by region.
| Month | Region | Sales |
|---|---|---|
| January | East | 1000 |
| January | West | 1500 |
| February | East | 1200 |
| February | West | 1300 |
| March | East | 1100 |
| March | West | 1400 |
=IMPORTRANGE("https://docs.google.com/spreadsheets/d/abc123xyz456/edit#gid=0", "Sheet1!A2:C7") to bring in sales data from another spreadsheet.=SUM(C2:C7) from the imported data.=AVERAGE(C2:C7) to find average sales.=QUERY(A2:C7, "select B, sum(C) group by B", 0) to sum sales by region.+---------------------------+-----------------------+ | Imported Sales Data Table | Total Sales KPI | | (Full data from IMPORTRANGE) | (Sum of Sales) | +---------------------------+-----------------------+ | Sales by Region Table | Average Sales per Month| | (Sum sales by region) | (Average sales) | +---------------------------+-----------------------+
Add a filter dropdown for Month. When you select a month, all components update to show data only for that month. The IMPORTRANGE data is filtered using formulas like =FILTER(IMPORTRANGE(...), INDEX(IMPORTRANGE(...),0,1)=selectedMonth).
If you add a filter for Month = February, which components update?
IMPORTRANGE function do in Google Sheets?=IMPORTRANGE("https://docs.google.com/spreadsheets/d/abc123", "Sheet1!C2:C4"), what will be the output if Sheet1 cells C2, C3, and C4 contain 10, 20, and 30 respectively?=IMPORTRANGE("https://docs.google.com/spreadsheets/d/abc123", "Sheet1!A1:A3") but see a #REF! error. What is the most likely fix?B2:D4 from a spreadsheet with URL https://docs.google.com/spreadsheets/d/xyz789 but only if the values in column B are greater than 50. Which formula correctly combines IMPORTRANGE and FILTER to do this?