0
0
Google Sheetsspreadsheet~10 mins

Why external data expands analysis in Google Sheets - Formula Trace Breakdown

Choose your learning style9 modes available
Sample Data

Sales data by product and region in columns A-C. External data with region population in columns E-F.

CellValue
A1Product
B1Sales
C1Region
A2Apples
B2100
C2North
A3Bananas
B3150
C3South
A4Cherries
B4200
C4East
E1Region
F1Population
E2North
F250000
E3South
F370000
E4East
F460000
Formula Trace
=B2 * VLOOKUP(C2, E2:F4, 2, FALSE)
Step 1: VLOOKUP(C2, E2:F4, 2, FALSE)
Step 2: B2 * 50000
Step 3: 100 * 50000
Cell Reference Map
    A       B       C       D       E       F
1 |Product| Sales |Region |       |Region |Population|
2 |Apples |  100  | North |       | North |  50000  |
3 |Bananas|  150  | South |       | South |  70000  |
4 |Cherries| 200  | East  |       | East  |  60000  |
Formula uses sales in B2 and region in C2 to look up population in external data range E2:F4.
Result
    A       B       C       D       E       F       G
1 |Product| Sales |Region |       |Region |Population|Result   |
2 |Apples |  100  | North |       | North |  50000  |5000000  |
3 |Bananas|  150  | South |       | South |  70000  |         |
4 |Cherries| 200  | East  |       | East  |  60000  |         |
The result in G2 shows the expanded analysis by multiplying sales with external population data.
Sheet Trace Quiz - 3 Questions
Test your understanding
What does the VLOOKUP function do in the formula?
AAdds sales and population values
BMultiplies sales by region code
CFinds the population for the region in C2 from the external data
DReturns the sales value from B2
Key Result
Use VLOOKUP to find matching data in an external range and combine it with local data for deeper analysis.