Structured reference in Excel tables

This tutorial explains the basics of Excel structured references and shares some tricks on using them in real-life formulas.

One of the most useful features of Excel tables are structured references. When you have just stumbled upon a special syntax for referencing tables, it may look boring and confusing, but after experimenting a bit you will surely see how useful and cool this feature is.

Excel structured reference

A structured reference, or table reference, is special way for referencing tables and their parts that uses a combination of table and column names instead of cell addresses.

This special syntax is required because Excel tables (vs. ranges) are very powerful and resilient, and normal cell references cannot adjust dynamically as data is added or removed from a table.

For example, to sum the values in cells B2:B5, you use the SUM function with a usual range reference:

=SUM(B2:B5)

To add up the numbers in the "Sales" column of Table1, you use a structured reference:

=SUM(Table1[Sales])
Excel structured reference

Key features of structured references

Compared to standard cell references, table references have a number of advanced features.

Easily created

To add structured references to your formula, you simply select the table cells you want to refer to. The knowledge of a special syntax is not required.

Resilient and automatically updated

When you rename a column, references are automatically updated with the new name, and a formula does not break. Moreover, as you add new rows to the table, they are immediately included in the existing references, and the formulas calculate the full set of data.

So, whatever manipulations you do with your Excel tables, you don't have to worry about updating the structured references.

Can be used inside and outside a table

Structured references can be used in formulas both inside and outside an Excel table, which makes locating tables in large workbooks easier.

Formula auto-fill (calculated columns)

To perform the same calculation in each table row, it is enough to enter a formula in just one cell. All other cells in that column are filled automatically.

How to create a structured reference in Excel

Making a structured reference in Excel is very easy and intuitive.

If you are working with a range, convert it to an Excel table first. For this, select all the data and press Ctrl + T. For more information, please see How to create a table in Excel.

To create a structured reference, this is what you need to do:

  1. Start typing a formula as usual, beginning with the equality sign (=).
  2. When it comes to the first reference, select the corresponding cell or range of cells in your table. Excel will pick up the column name(s) and create an appropriate structured reference for you automatically.
  3. Type the closing parenthesis and press Enter. If the formula is created inside the table, Excel automatically fills the entire column with the same formula.

As an example, let's add up the sales numbers for 3 months in each row of our sample table, named Sales. For this, we type =SUM( in E2, select B2:D2, type the closing parenthesis, and press Enter:
Creating a structured reference in Excel

As the result, the whole column E is auto-filled with this formula:

=SUM(Sales[@[Jan]:[Mar]])

Though the formula is the same, the data is calculated in each row individually. To understand the inner mechanics, please take a look at the table reference syntax.

If you are entering a formula outside the table, and that formula requires only a range of cells, a faster way to make a structured reference is this:

  1. After the opening parenthesis, start typing the table name. As you type the first letter, Excel will show all matching names. If necessary, type a couple more letters to narrow down the list.
  2. Use the arrow keys to select the table name in the list.
  3. Double-click the selected name or press the Tab key to add it to your formula.
  4. Type the closing parenthesis and press Enter.

For example, to find the largest number in our sample table, we start typing the MAX formula, after the opening parenthesis type "s", select the Sales table in the list, and press Tab or double-click the name.

As the result, we have this formula:

=MAX(Sales)
Creating a formula with structured references outside the table

Structured reference syntax

As already mentioned, you do not need to know the syntax of structured references to include them in your formulas, however it will help you understand what each formula is actually doing.

Usually, a structured reference is represented by a string that begins with a table name and ends with a column specifier.

As an example, let's break down the following formula that adds up the totals of the South and North columns in the table named Regions:
Structured reference syntax

The reference includes three components:

  1. Table name
  2. Item specifier
  3. Column specifiers

To see what cells are actually calculated, select the formula cell and click anywhere in the formula bar. Excel will highlight the referenced table cells:
Excel tables reference

Table name

The table name references only the table data, without header row or total rows. It can be a default table name like Table1 or a custom name like Regions. To give a custom name to your table, carry out these steps.

If your formula is located within the table it refers to, the table name is usually omitted because it is implied.

Column specifier

Column specifier references the data in the corresponding column, without the header row and total row. A column specifier is represented by the column name enclosed in brackets, e.g. [South].

To refer to more than one contiguous columns, use the range operator like [[South]:[East]].

Item specifier

To refer to specific parts of a table, you can use any of the following specifiers.

Item specifier Refers to
[#All] The entire table, including table data, column headers and total row.
[#Data] The data rows.
[#Headers] The header row (column headers).
[#Totals] The total row. If there's no total row, it returns null.
[@Column_Name] The current row, i.e. the same row as the formula.

Please notice that the pound sign (#) is used with all the item specifiers, except the current row. To refer to the cells in the same row where you enter the formula, Excel uses the @ character followed by the column name.

For example, to add numbers in the South and West columns of the current row, you'd use this formula:

=SUM(Regions[@South], Regions[@West])

If the column names contain spaces, punctuation marks or special characters, an additional set of brackets around the column name will appear:

=SUM(Regions[@[South sales]], Regions[@[West sales]])

Structured reference operators

The following operators allow you to combine different specifiers and add even more flexibility to your structured references.

Range operator (colon)

As with normal range references, you use a colon (:) to refer to two or more adjacent columns in a table.

For example, the below formula adds up the numbers in all the columns between South and East.

=SUM(Regions[[South]:[East]])

Union operator (comma)

To refer to non-adjacent columns, separate the column specifiers with commas.

For instance, here's how you can sum the data rows in the South and West columns.

=SUM(Regions[South], Regions[West])

Intersection operator (space)

It is used to refer to a cell at the intersection of a specific row and column.

For example, to return a value at the intersection of the Total row and West column, use this reference:

=Regions[#Totals] Regions[[#All],[West]]

Please notice that the [#All] specifier is required in this case because the column specifier does not include the total row. Without it, the formula would return #NULL!.

Table reference syntax rules

To edit or make structured references manually, please follow these guidelines:

1. Enclose specifiers in brackets

All column and special item specifiers must be enclosed in [square brackets].

A specifier that contains other specifiers should be wrapped in outer brackets. For example, Regions[[South]:[East]].

2. Separate inner specifiers with commas

If a specifier contains two or more inner specifiers, those inner specifiers need to be separated with commas.

For example, to return the header of the South column, you type a comma in between [#Headers] and [South] and enclose this whole construction in an additional set of brackets:

=Regions[[#Headers],[South]]

3. Do not use quotation marks around column headers

In table references, column headers don't require quotes whether they are text, numbers or dates.

4. Use a single quotation mark for some special characters in column headers

In structured references, some characters such as left and right brackets, pound sign (#) and single quotation mark (') have special meaning. If any of the above characters is included in a column header, a single quotation mark needs to be used before that character in a column specifier.

For example, for the column header "Item #", the specifier is [Item '#].

5. Use spaces to make structured references more readable

To improve the readability of your table references, you can insert spaces in-between specifiers. Normally, it is considered a good practice to use spaces after commas. For example:

=AVERAGE(Regions[South], Regions[West], Regions[North])

Excel table references - formula examples

To gain more understanding about structured references in Excel, let's go over a few more formula examples. We'll try to keep them simple, meaningful and useful.

Find the number of rows and columns in an Excel table

To get the total columns and rows count, use the COLUMNS and ROWS functions, which only require the table name:

COLUMNS(table)
ROWS(table)

For example, to find the number of columns and data rows in the table named Sales, use these formulas:

=COLUMNS(Sales)

=ROWS(Sales)

To include the header and total rows in the count, use the [#ALL] specifier:

=ROWS(Sales[#All])

The below screenshot shows all the formulas in action:
Formulas to get the number of rows and columns in an Excel table

Count blanks and non-blanks in a column

When counting something in a specific column, be sure to output the result outside the table, otherwise you might end up with circular references and wrong results.

To count blanks in a column, use the COUNTBLANK function. To count non-blank cells in a column, utilize the COUNTA function.

For example, to find out how many cells in the Jan column are empty and how many contain data, use these formulas:

Blanks:

=COUNTBLANK(Sales[Jan])

Non-blanks:

=COUNTA(Sales[Jan])
Formulas to count empty and non-empty cells in a column

To count non-blank cells in visible rows in a filtered table, use the SUBTOTAL function with function_num set to 103:

=SUBTOTAL(103,Sales[Jan])

Sum in an Excel table

The fastest way to add up numbers in an Excel table is to enable the Total Row option. To do this, right click any cell within the table, point to Table, and click Totals Row. The total row will appear at the end of your table straight away.

Sometimes Excel may assume you want to total only the last column and leaves other cells in the Total row blank. To fix this, select an empty cell in the Total row, click the arrow that appears next to the cell, and then select the SUM function in the list:
Sum function in the Total row

This will insert a SUBTOTAL formula that sums values only in visible rows, ignoring filtered-out rows:

=SUBTOTAL(109,[Jan])

Please note that this formula works only in the Total row. If you try to manually insert it in a data row, this would create a circular reference and return 0 as the result. A SUM formula with a structured reference won't work either for the same reason:
A SUM formula with a circular reference

So, if you want the totals inside the table, you need to either enable the Total row or use a normal range reference such as:

=SUM(B2:B5)

Outside the table, the SUM formula with a structured reference works just fine:

=SUM(Sales[Jan])

Please note that unlike SUBTOTAL, the SUM function adds up values in all the rows, visible and hidden.

Relative and absolute structured references in Excel

By default, Excel structured references behave in the following way:

  • Multiple column references are absolute and do not change when formulas are copied.
  • Single column references are relative and change when dragged across columns. When copied/pasted via a corresponding command or shortcuts (Ctrl+C and Ctrl+V), they do not change.

In situations when you need a combination of relative and absolute table references, there is no way to copy the formula and keep table references correct. Dragging the formula will change the references to single columns, and copy/pasting shortcuts will make all the references static. But there are a couple of simple tricks to get around!

Absolute structured reference to single column

To make a single column reference absolute, repeat the column name to formally turn it into a range reference.

Relative column reference (default)

table[column]

Absolute column reference

table[[column]:[column]]

To make an absolute reference for the current row, prefix the column identifier by the @ symbol:

table[@[column]:[column]]

To see how relative and absolute table references work in practice, please consider the following example.

Supposing you want to add up the sales numbers for a specific product for 3 months. For this, we enter the target product name in some cell (F2 in our case) and use the SUMIF function to get the total of Jan sales:

=SUMIF(Sales[Item], $F$2, Sales[Jan])

The problem is that when we drag the formula to the right to calculate the totals for the other two months, the [Item] reference changes, and the formula breaks:
Relative structured reference

To fix this, make the [Item] reference absolute, but keep [Jan] relative:

=SUMIF(Sales[[Item]:[Item]], $F$2, Sales[Jan])

Now, you can drag the modified formula to other columns and it works perfectly:
Absolute structured reference

Relative structured reference to multiple columns

In Excel tables, structured references to several columns are absolute by their nature and remain unchanged when copied to other cells.

To me, this behavior is very reasonable. But if you need to make a structured range reference relative, prefix each column specifier with the table name and remove the outer square brackets as shown below.

Absolute range reference (default)

table[[column1]:[column2]]

Relative range reference

table[column1]:table[column2]

To refer to the current row inside the table, use the @ symbol:

[@column1]:[@column2]

For example, the below formula with an absolute structured reference adds up the numbers in the current row of the Jan and Feb columns. When copied to another column, it will still sum Jan and Feb.

=SUM(Sales[@[Jan]:[Feb]])

In case you want the reference to change based on a relative position of the column where the formula is copied, make it relative:

=SUM(Sales[@Jan]:Sales[@Feb])

Please notice the formula transformation in column F (the table name is omitted because the formula is inside the table):
Relative structured reference to multiple columns

That's how you make table references in Excel. To have a closer look at the examples discussed in this tutorial, feel free to download our sample workbook to Excel Structured Reference. I thank you for reading and hope to see you on our blog next week.

71 comments

  1. I was trying to create customer data entry system At time of entry I need to see drop down (achieved thru data validation) list of existing sorted and unique customers in different sheet -say sheet 2. If Customer /Lead I am trying to add does not exist in list, I just type it in. Now this newly entered customer should update dropdown list and be available for next row entry if needed in sheet one where I collect customer/ new lead of the day. How to achieve this? Tried thru ChatGPT - it nearly worked. But not quite So can you provide any working solution.

  2. Hello,
    This is not a comment. I have just started learning formulas in excel, but I am stuck because I can't download '04 Budget cell references. could you please send me a file of this data. I would be grateful.
    Best regards.

  3. Is there a way to reference a single cell within a named table based on either positioning criteria or the name/value of the column and row?

    I have an table of offsets I am trying to apply to values within multiple other tables in a more robust, repeatable manner.

    Using the example above, imagine that I had a sales table that is filled with regular sales data, but I have another table that represents income from other sources. If I wanted to total each cell individually (and their row numbers did not match), can I do that?

    I am envisioning something like =Sales[Apples,Jan]+OtherInc[Apples,Jan], but that doesn't work (assuming the Sales and OtherInc tables do not use the same rows).

    • Вы можете объединить две таблицы в одну и затем подсчитывать в ней итоги. Для этого можно использовать Combine Sheets tool. Вы можете использовать Consolidate Sheets tool, чтобы в новойТакже вы можете подсчитывать сумму по условию отдельно в каждой таблице при помощи формулы SUMIFS.

    • Hello!
      You can combine two tables using the Combine Sheets tool and then calculate totals in that table. You can also use the Consolidate Sheets tool. Consolidate Sheets tool can summarize your data by column headers, row headers, or position in a table. It is available as a part of our Ultimate Suite for Excel that you can install in a trial mode and check how it works for free.
      You can also use the SUMIFS formula to calculate the sum of the conditions in each table and then sum them.
      I hope I answered your question. If something is still unclear, please feel free to ask.

  4. Does anyone know if this is possible?

    Originally the formula was =COUNTIFS($A$2:A2,A2,$B$2,B2,B2)=1 - but whenever I delete rows, the top formula will be updated to the number of rows that were there before deletion because it's absolute mixed with relative. I can't make the other parts of the countifs absolute or the formula doesn't work. I wanted to see if doing it in table ref format would stop this.

    I wanted to recreate it with the table refs but can't seem to do it. Thanks!

  5. Hi. I have a table that I want to use as a template (call it Table1). I have created the table without using structured references in the calculated fields because I want to be able to copy and paste the table but not keep the references (so that each duplicate will refer to itself and not other tables). I have VBA code that will copy and paste the table (to a new table, Table1), but even without the structured reference in Table1, Table2 will have structured references back to Table1. I would appreciate any recommendations!

  6. Hello,

    My structured reference formula refers to a table that is in another workbook. If I close this workbook the formula gives the "#REF!" result. How can I avoid that ?

    Best regards,

    Loïc.

  7. Hi,
    Similar question to above.
    Is there a way to automatically convert a formula containing cell references to structured references?
    I have an existing file with sumifs formulas referencing a range in another tab and now what to delete some rows in the range but this results in the sumifs formulas being invalid as the cell references don't update.
    So I have converted the range to a Table.
    Can I automatically change the sumifs formulas to use the structured reference in the newly created table as opposed to the existing cell references?
    Many thanks,
    Patricia

    • Hello!
      When you convert a range to a table, Excel does not automatically change the cell references in that range to the appropriate structured references.
      To change part of the formula automatically, you can use the Excel Find & Select tool. (Look in: Fofmulas).
      I hope it’ll be helpful.

  8. I have calculations about a range of a table fSalesAn[Quantity], how can I receive the Quantity field, in text, without evoking fSalesAn[[#Headers];[Quantity]

  9. Hi,

    I am having a really tough time finding a solution for using greater and less than signs in combination with structured references. I have a specification table, that I am trying to call to so that I can count how many data points fall within a specified range. Currently, my formula looks like this:

    =(COUNTIFS(Master!$B$2:$B$1000,Table1[@Brand],Master!$C$2:$C$1000,Table1[@Flavor],Master!$E$2:$E$1000,Table1[@[Month '#]],Master!$L$2:$L$1000,">[Specifications[Lower Limit]]",Master!$L$2:$L$1000,"<[Specifications[Upper Limit]]"))

    Excel will not recognize the structured reference within quotations, is there another way to code the last two criteria of this formula?

    • Hello!
      Please try the following formula:

      =(COUNTIFS(Master!$B$2:$B$1000,Table1[@Brand],Master!$C$2:$C$1000,Table1[@Flavor], Master!$E$2:$E$1000,Table1[@[Month ‘#]], Master!$L$2:$L$1000,">"&[Specifications[Lower Limit]]”, Master!$L$2:$L$1000,"<"&[Specifications[Upper Limit]]"))

      Please check out this article to learn how to use cell references in COUNTIFS formulas.

  10. How do I make this dynamic with filtering? assume there is a date column i want to apply filters to. and the other columns are in a sum if formula.
    ex. dates 1/1/21-1/1/22
    Outside of the table i have a list of names each gets a formula like =SUMIF(Table3[Name],$A$300(there is a name here),Table3[Sales])
    if I apply a filter to the date the table updates (hides non applicable data) but the value of the formula does not update.

    • Hello!
      The SUMIF function counts the data in the hidden rows. If you use the Excel filter, I recommend paying attention to the SUBTOTAL function. She knows how to ignore hidden data. Or you can use the FILTER function to filter the data and then use SUMIF with that data.
      I hope it’ll be helpful.

  11. For a credit card calculation, I have a table, which depends on others.
    And in the "summary table", the column header indicates the month.
    I need to make the formula (in the cells of this "summary table") that depends on the other worksheets, and at the same time, check that the values correspond to the [month] of the column in which the formula is inserted. Which "mes" is the column title.
    Just as there is "@" to refer to the value of a certain row in the "@" column, I ask if there is no way to make an absolute reference to the "current column header", without having to manually write the header name of the column. I need to write "January/2023", "February/2023", etc.
    I've tried "#" and "@" in various combinations, but I can't find anything]

  12. Formula in AB2 cell:

    =IF([@Index]=1,ROUND([@[Transaction Unit]],8),IF([@Effect]="Yes",IF([@[Sale Transaction Type]]="No",ROUND(AB1+[@[Transaction Unit]],8),ROUND(AB1-[@[Transaction Unit]],8)),AB1))

    In the formula, I have to use value of the previous row. I dont know other way of handing so like excel I have given reference of the previous row cell.

    I have two questions:

    1) Is there any better way to reference in EXCEL TABLE?
    2) If no to previous question, do you see problem in this method? Can you suggest something better?

    Thank you very much

    • Hi!
      It is very difficult to understand a formula that contains unique references to your workbook worksheets. Hence, I cannot check its work, sorry.

  13. Hi

    is there any way to reference in this formula =SUM(Sales[Jan]), the value between brackets to a cell value. I mean like this =SUM(Sales[a1]) where the value of A1 = Jan.

    or in the floowing formula

    index(Sales;SECUENCE(ROWS(SALES));{1\3\5}) VS index(Sales;SECUENCE(ROWS(SALES));{A1}), where A1 value = 1/3/5

  14. Can we use a cell content to determine the column in a table? Like in your example with the sales and months, let's say I want to find any Item by month creating a structured reference using a cell that will contain the month name. So if using your table example of sales and months, I would like to write the following formula using xlookup: =xlookup(F5,Sales[Item],Sales[G5]) where F5 will have the item (i.e. Apples) and G5 will have month (i.e. Mar). This only works if I use the month name directly into the xlookup...

  15. I want a cells on another sheet to repeat the same values of a range of a table

    Sheet 1 table which I wish to reference begins at row 2 because of headers
    The sheet 2 table begins at row 4.

    When I use =table[column] or =table[@column] in the cell of row 4 of the sheet 2 table it returns the value of sheet 1 row 4 and not the first row of the table (row 2 value)

    Is there any way to use structured references but have them begin at the first row of the table being referred to and not the row from the reference table which corresponds to the cell which the equation was typed?

    • Hello!
      Earlier in this article, it was said that the @ sign denotes an absolute reference to a cell in a column.
      Table1[Column2] reference returns the entire column.
      Table1[@Column2] reference returns one cell that corresponds to the line number in which the formula is written.

      • My apologies I should have been a bit more clear.

        I have a table which has column where I want the exact same data to appear in another column but in a different table.

        Table 1 Column 1 begins at row 2 because of headers
        Table 2 Column 1 begins at row 4 because of headers

        I put these functions into row 4 of column 1 in table 2
        Table1[Column1] returns spill since it is a table
        Table1[@Column1] returns the value at Row 4 of column 1 in table 2

        Is there a way to reference Table 1[@column1] - 2 rows location?

        Thank you

  16. Great article, articulating this expression.
    Keep it up!

    • I agree; thank you for this information and all the great replies to people's questions.

  17. Hello,

    has anyone notice the strange behavior of structured referencing when columns order is changed?
    I'm filling tableobject with SQL and intendly have unchecked property "preserve column order and filtering".

    When I change column order in SQL, it also change column order in Table object. That is OK.

    But what I would expect is that any structured formulas in the workbook remains the same and work regardless on column order. But it does not! All structured formulas changes!

    e.g. if there was column named MONTH as a first column and it is used in formula like =[MONTH]...
    then after refreshing of tableobject and changing column order so the first column is YEAR and column MONTH is on second place, all structured formulas changed to =[YEAR]...

    This behavior I really woldn't expect :-(
    Is it normal feature or can I change this in some hidden settings?

    Petr

  18. Superb explanation...

  19. Thank you for the explanation. I am thinking how we can use the column name dynamically.
    For example I have a table which have monthly purchases(January, February, etc. like month names are headers) . I don't have total column, but instead I have a cell below the table (not in the table reference) and I need to find the current month purchase total.

    If current month is January, I need to update the total of January column. My table name is tblPurchase.

    I can find the current month column name using MATCH formula like below

    =CONCAT("tblPurchase[", TEXT(TODAY(), "mmmm"), "]")

    But how can I use this column name as a reference? Assumed that A5 is the result cell of the above formula.

    =SUBTOTAL(9, A5)

    It returns 0 only. Can anyone help me

    • Hello!
      Create a named range (for example, "March").
      You can find the sum of the values from this named range using the formula

      =SUM(INDIRECT(TEXT("03/01/2021","mmmm")))

      You can learn more about named ranges in Excel in this article on our blog.
      If this is not what you wanted, please describe the problem in more detail.

  20. One additional nuanced scenario is if the column name is a number:

    For example, when making a relative structured reference to multiple columns within the current row.

    The above example works fine:

    =SUM(Sales[@Jan]:Sales[@Feb])

    ...unless the column names are a number

    Substituting
    Jan = 2021.01
    Feb = 2021.02

    =SUM(Sales[@2021.01]:Sales[@2021.02]) *** This will not work!

    An additional set of brackets around the column name is required:

    =SUM(Sales[@[2021.01]]:Sales[@[2021.02]]) *** This works!

    • Hi Marty,

      Thank you for your comment.

      More precisely, that additional set of brackets is required because of the dot. If the columns names were integers, extra brackets wouldn't be needed.

      The general rule is this: if the column names contain spaces, punctuation marks or special characters, an additional set of brackets around the column name should be added.

      Again, thank you for this observation! We've added this information to the article.

  21. Thank you for the topic is great.
    I would like to ask if there is a way to solve the below scenario:

    1. Range of Data let's say B5:F12
    2. the first row is the header (col1, col2, ..., col5)
    3. I have a lot of formulas referencing different columns of this range.
    exp1: =SUM(F6:F12)
    exp2: =SUM(E6:E12)+SUM(F6:F12)

    3. I converted the range into a table named table1

    the question:
    is there a way to change all the references in all the old formulas to structured references of table1?
    exp1(will change to): =SUM(Table1[col5])
    exp2(will change to): =SUM(Table1[col4])+SUM(Table1[col5])

    Appreciate you response
    Firas

  22. Is there a way to convert a formula containing 'old-style' cell references to structured references. I have a set of formulas that reference a range I have converted into a table. Now I have to manually adjust $A3 to [@[Client ID]] in the formulas. It would be great if this could be done across a range of columns automatically similar to Insert > Name > Apply when using Named Ranges. Can it be done?

    • I have this same question, but I want to just show cell references because it is very difficult for me to read the names and figure it out as a formula but I would like to keep it as a table.

  23. Good morning.

    I have a table and I want to get values (Similar to vlookup) in cells outside the table and row of the table.

    Taking the lookup value and Table Column Name to retrieve from cells content (Not constant values in a formula).

    Please, could you help me?

    Thank you

    • Hello!
      I’m sorry but your task is not entirely clear to me. For me to be able to help you better, please describe your task in more detail. Please specify what you were trying to find, what formula you used and what problem or error occurred. Give an example of the source data and the expected result.
      It’ll help me understand it better and find a solution for you.

  24. Joining 2 columns in a table. A number value in column A joined to a Date value in column B to form a text value in column C using formula C=A&" - "&month(B)

    Tables converts this formula to
    =[@Number]&" - "&MONTH([@[DATE]])

    Sample;
    65 Nov 26, 2020 65 - 11
    66 Dec 07,2020 66 - 12

    Is there a way to format the month portion only in column C so it displays as Nov and Dec...

    Desired;

    65 Nov 26, 2020 65 - Nov
    66 Dec 07, 2020 66 - Dec

    • Hello!
      If I understand your task correctly, the following formula should work for you:

      =[@Number]&” – “&TEXT([@[DATE]],"mmmm")

      You can read more about the TEXT function in the above linked article.

  25. Hi,

    I am having a heck of a time with doing and AND function with structured references. The question is [Project Type] of "Mixed Use" and [Funding Type] of "Loan" and every time I set it up, it says invalid. I don't know what else to type. Please help. Thanks

    • Hello!
      Unfortunately, without seeing your data it is difficult to give you any advice. Please specify what you were trying to find, what formula you used and what problem or error occurred.

  26. Totally impressed with all the great stuff that comes out of Ablebits. This is no exception. The problem is, and I hate to say this, I simply don't have the time or inclination to relearn a whole new way of writing and executing this new way of creating formulas and all the rules and exceptions involved. I am an old timer that learned spreadsheets on SuperCalc, 123 and Lotus then finally Microsoft came up with what I consider to be the last word in what I need for my fairly simple calcuations having to do with my stock day trading.

    Sadly, a few years back, I decided to create a sophisticated Workbook whereby I created a primary worksheet comprised of 365 pivot tables for each day of the year. Each table has all my stock positions broke down into specific lots and and from that, I keep running totals of all kinds of statistical data I created with standard formulas. The workbook has all kinds of worksheets crammed with statistical data that I reference and use in the primary worksheet.

    So, one day, I fiddled with one of the options for naming thinking that the use of the header names instead of standard cell references would make things easier. From that day on, Structured references began creeping into my formulas as I added things. I had no idea it would grow to be such a problem. It especially became prevalent when I imported CSV files and created new pivot tables in other worksheets. I also have a lot of worksheets in this workbook with long sophisticated names that I have to pull data from. Column Header names were also long but by making them that way, I knew precisely where to go to extract data. I learned to read my formulas fluently even with these setbacks and move around quickly and precisely over a period of time. Now, I am constantly having to physically remove structured names as they keep popping up like burnt popcorn and rewrite the formulas all over again. I finally found out how to get back into the proper location to turn off table names in formulas, but I have not found any way to force excel to convert all the structured names back to the good old Column, Row nomenclature and I either cannot figure out the proper way to phrase the proper question, perhaps there is no way to easily fix this but I really would like to purge all the structured references without having to start over again after all these years.

    Sorry for the long winded explanation but I am hoping one of you fine people can help me with suggestions on how to proceed, or steer me to somewhere on the web to a place that can.

    Thank you for your kind consideration.

    • Hello!
      Unfortunately, without seeing your data it hard to give you advice.
      If I understand your task correctly, you can convert your tables to regular data ranges as described here. This will automatically change the formulas in your workbook.
      If I misunderstood you, please explain your problem in more detail.

    • "I finally found out how to get back into the proper location to turn off table names in formulas"

      Thank you, good sir. I have been googling for a long time trying to figure out how to show cell references, not names you gave me what to search for.

      For anyone looking on a Mac, it is different than on Windows, as is so often the case.
      Preferences>Tables & Filters>Uncheck "Use table names in formulas."

      You then have to update a formula, and they will all change to show coordinates. Closing and reopening the workbook will not do the trick.

  27. I am working on a doc with multiple sheets and I am referencing different tables in different sheets.

    I reference a table on another sheet and everything displays how I want but when I reorganize the referenced table by another metric (sort by price vs sort by model etc) it changes the values in the other table.

    Is there a way to reference a specific cell in a table despite how the table is organized?

  28. Just wanted to say WOW. This is so thorough, clear and well written. Kudos and thank you to the author. I'm saving this for reference for certain!

  29. Hi I am having trouble getting rid of my structured references, I have updated my options under formulas to make sure use table names in formulas is un-ticked but they are still showing up even when I make a new formula from my pivot table. Help please!! I am use Getpciot data functions for pviot table references and I want to use those use without the table headings. Please see below for example what is currently happening
    =GETPIVOTDATA("[Measures].[Sum of Amount]",Pivot!$A$3,"[Table1].[Date (Month)]","[Table1].[Date (Month)].&[May]","[Table1].[Account]","[Table1].[Account].&[A4 Sketch]","[Table1].[Catergory]","[Table1].[Catergory].&[Sales]","[Table1].[Date (Year)]","[Table1].[Date (Year)].&[2020]")

  30. first thank you for this fantastic tutorial
    one question:
    how about dynamic range like $A$2:A$2 when we drag it to right and it came to $A$2:B$2 and ...
    how can we have this in structurede reference?

    thanks alot

    • Hi Hosna,

      I am not sure this can be done with structured references, at least I do not know a way. You can just continue using $A$2:A$2, it will work for table's data as well.

  31. What version of Excel supports this function? If I save a spreadsheet that uses structured references to the .xls format, will those be stripped from it?

  32. Is there a work around for something like $B$2, while working in tables? I understand mostly the absolute reference structure working in tables, but i am curious on how to re-create $B$2 using the table syntax.

  33. These things kinda vex me.
    I used to have all my SUMIFs and SUMPRODUCTS working fine.
    Now...sheesh, its extremely difficult to try to find structured table references to sum based on multiple criteria.

  34. Matt, thank you for your help. I was able to make it work. I did need to include the table name, but that may be my version of Excel

    Formula, (in a column titled 'Total'), that worked for me:
    =SUM(Table1[[#Headers],[Amount]]:[@Amount])

    Greatly appreciate the help.
    Sergio

  35. Hi,
    If the name of the column i want to use is in a specific cell, how is the correct notacion of this reference.
    Example
    In cell B1 = Amount_20
    Instead of writing the formula "=ProfitAndLossStandard__3[@[Amount_20]]" I tried to use "=ProfitAndLossStandard__3[@[B1]]" but did not work.
    How do I make this reference correctly?

    • =INDIRECT("ProfitAndLossStandard__3["&B1&"]"

  36. awesome tutorial! I'm currently diving into courses of excel provided by pwc which lacks the explanation of this. Nice job!

  37. I'm having an issue. I'm using Table structured references in my linear regression sheets. However, after I have everything setup like I want it and I save and re-open the file, the structured reference formulas turn into regular formulas referencing the rows/columns of the current data in the sheet like a regular formula. I need my structured references to stay intact so they will grow and shrink as I add and remove data to the tables.
    for example:
    =MEDIAN((Table14[CostPerUnit]))
    after saving and re-opening turns into:
    =MEDIAN('Sheet1'!$K$16:$K$69)

    Normal behavior? Anyway to avoid it or am I missing something? Any help is appreciated!! Thank you!

    • I have the same problem. Any solution?

  38. I see your examples on structured references in columns. How can I use this in rows? I want a cumulative total column next to a column of values. I can do this with =SUM($B$3:B6) in column C but can I do this with structured references? My table has a column called DESCRIPTION and one called AMOUNT. I would like a cumulative column with a running total.

    Thanks for the help
    Sergio

    • Hi Sergio, similar to my answer above you can use the Header to 'fix' the top. Try:
      =SUM([[#Headers],[Column B Name]]:[@[Column B Name]])

  39. Hi
    I'm trying to calulate the sequential duplicate number in a list of Id Numbers in a table. There are different numbers of duplicates for each Id number. Because the table is downloaded as an excel template from Dynamics I need to use the structured reference (using cell references doesn't calculate in the downloaded spreadsheet as the formula doesn't copy down without structured references). Normally I would just use =countif(d$2:d2,d2), but this doesn't automatically calculate when downloaded from Dynamics. When I create my version of this in a structured reference formula it doesn't work. I've tried =COUNTIF([Form '#]:[@[Form '#]],[@[Form '# ]]) where Form # is the field in the table but it proviudes me with the number of duplicate records in every row. I've tried a few alternate versions but they don't work either. Thanks in advance, Shane

    • Shane, I was looking something else up and saw your comment. Sorry I didn't see it earlier. If you are still wondering the problem is that the first [Form '#] of your "range" is already the entire column and hence why all results are total number of that duplicates. Try [[#Headers],[Form '#]] instead to force it to use the header cell of that column for your range. So the new formula would be:
      =COUNTIF([[#Headers],[Form '#]]:[@[Form '#]],[@[Form '# ]])

      • Hi Matt, I was having the same exact issue as Shane with the table reference for a COUNTIF formula. I tried your table reference fix and I didn't get it entered right, the first time. I tried it again, a second time and sure enough, it worked. I've got to say, YOU ARE THE MAN!!! No one out there on the internet explains, or shows how to do a mixed reference in a table reference version like that. Thanks for showing how it's done.

  40. I've discovered structured references and want to do more with them. Seems like they only work as intended (auto filling columns) on the same worksheet with the table / query. Is there a trick to doing this from a different worksheet?

    • Hi Dave,
      Structured references can also be used from a different worksheet. When making a formula, you just need to select cells in the original table using the mouse. In this tutorial, you can find some examples of formula with structured references outside a table.

Post a comment



Thank you for your comment!
When posting a question, please be very clear and concise. This will help us provide a quick and relevant solution to
your query. We cannot guarantee that we will answer every question, but we'll do our best :)