0
0
Excelspreadsheet~10 mins

Named ranges in Excel - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This table shows products with their prices and quantities. The range B2:B4 is named 'Prices'.

CellValue
A1Product
A2Apple
A3Banana
A4Cherry
B1Price
B21
B30.5
B42
D1Quantity
D23
D35
D42
Formula Trace
=SUM(Prices * D2:D4)
Step 1: Prices
Step 2: D2:D4
Step 3: Prices * D2:D4
Step 4: SUM({3.00, 2.50, 4.00})
Cell Reference Map
    A       B       C       D
1 Product  Price           Quantity
2 Apple    1.00            3
3 Banana   0.50            5
4 Cherry   2.00            2

Named range 'Prices' -> B2:B4
Formula uses 'Prices' and D2:D4
The named range 'Prices' points to cells B2 to B4. The formula multiplies these prices by quantities in D2 to D4.
Result
    A       B       C       D
1 Product  Price           Quantity
2 Apple    1.00            3
3 Banana   0.50            5
4 Cherry   2.00            2
5                       9.50

Cell D5 shows the total cost calculated by the formula.
The formula result 9.50 is shown in cell D5, representing the total cost of all products.
Sheet Trace Quiz - 3 Questions
Test your understanding
What does the named range 'Prices' refer to?
ACells A2 to A4 containing product names
BCells B2 to B4 containing prices
CCells D2 to D4 containing quantities
DCells A1 to B1 containing headers
Key Result
Named ranges can be used like cell ranges in formulas to simplify references and improve readability.