🏗️ Structured References

Goal: Reference data by Name, not Address.
Excel Tables allow you to use readable names like [@Price] instead of abstract coordinates like B2.

fx Select a mode...
Item
Price
Total
Apple
1.00
-
Banana
0.50
-
Cherry
2.00
-
Ready...

💻 Formula Structure

=[@Price] * 2
  • [@Column]: Refers to the cell in "This Row" of that column.
  • Benefit: Reads like plain English. Auto-fills down the entire column.
-- Current Operation
...
Visual:
-

⚠️ Syntax Tip

🔠 Using Space
If a column name has a space (e.g., "Unit Price"), you MUST use brackets: [Unit Price]. If no space, brackets are still good practice but strictly required only for special chars.