Forum Discussion
EXTENDING A NAMED RANGE
Definitely you can use the table name in formulas
We call it "Structured Table Reference"
Example: If you convert a list into a Table >> Then name it "Source". Automatically the columns are named by their Column Headers.
If Among the columns you have : Date, Manager, Region, Amount (these are the column Headers)
You can create a SUM function to Sum the Amount as follows
=SUM(Source[Amount])
Source being the Table Name
Amount being the Field name
Not only Excel recognizes the Table name (Source) but also the Column Names. You must include the column name in square brackets. It also appears in the intellisesnse list of Excel
Hope that Helps
Nabil Mourad
would this work in a vlookup formula? that's the most common reason I create ranges.
so, using your example, if I want to lookup an amount on a given date, could I use this:
=vlookup(A2,Source,4,FALSE)
??
- nabilmouradAug 14, 2019MVP