Table1[[#This Row][Column1]] works, but the formula should be on the same line as the row of the table you want to reference.
To refer to the first line elsewhere, use either COUNTIFS(criteria_range1, criteria1 [, criteria_rangen, criterian]) or a slightly more complex SUMIFS() if you need numeric values ββinstead of counts, as mentioned by studgeek:
SUMIFS(sum_range1, criteria_range1, criteria1 [, criteria_rangen, criterian])
Of course, you will need a unique criterion for selecting a row. So for example:
Table1 ID Value Name 1 2 Two 2 4 Four 3 8 Eight
SUMIF(Table1[Value], Table1[ID], 2) ... returns the value 4 (or zero if ID = 2 is not found). If your value is not numeric, you cannot use this method, obviously.
However, akuhn almost hit the real answer, but he didn't go far enough in his explanation / example, IMO.
INDEX(Table1[Name], 2) returns "Four" INDEX(Table1, 1, 1) returns 1
jdw
source share