Replace hardcoded cell coordinates like D2:D500 with self-documenting table specifiers like EmployeeTable[Salary] and [@Salary].
Structured references are Excel's way of allowing formulas to refer to table components by name rather than strict cell coordinates.
@ Symbol (Current Row): Writing [@Salary] tells Excel to look at the Salary column on the same row where the formula lives.=SUM(SalesTable[Revenue]) sums the entire Revenue column. If you add 1,000 new rows, the formula updates automatically without changing the cell range.[#All], [#Data], [#Headers], and [#Totals] to target specific structural sections of a table.💡 Refers to the value in the Salary column on the CURRENT row
Scenario: Financial Audit Transparency
During an external financial audit, an auditor inspects a complex revenue model. Old formulas like =C14*Sheet3!$F$88 required manual tracing across multiple sheets. Structured references like =[@Quantity] * PriceCatalog[UnitPrice] allow auditors to read formula logic as plain English, passing compliance checks immediately.
Writing =[@Salary] outside the table causes a #NAME? error. Fix: Always include table name outside the table, e.g. SUM(EmployeeTable[Salary]).
5 interactive questions on [@Column], Table[Col], and #All specifiers