Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Selecting a Specific Column of a Named Range for the SUMIF Function

I am trying to create a SUMIF function that dynamically adds up values in a specific column of a named range in my Excel sheet.

It is very easy to do this when there is no named range :

enter image description here

The formula picks out all the cells that contain "London" in their name and sums up the expenses related to London.

What I am trying to do is to use a named range called TripsData (A2:B5) and tell the SUMIF function to sum the entries in the column 2 of this range that meet the criterion of having London in their name.

How can I make this work without needing to create a second named range for column 2 and simply by telling Excel to look within the specified column of this named range? Index/Match only return one value so that doesn't work when there are several cells with London in their name.

Thanks for your help!

like image 264
Cla Rosie Avatar asked Nov 24 '16 21:11

Cla Rosie


People also ask

How do you Sumif a column?

If you want, you can apply the criteria to one range and sum the corresponding values in a different range. For example, the formula =SUMIF(B2:B5, "John", C2:C5) sums only the values in the range C2:C5, where the corresponding cells in the range B2:B5 equal "John."

Can you use Sumifs with columns and rows?

Incorporating SUMIF, INDEX & MATCH Functions Together to Sum under Column and Row Criteria. By using INDEX & MATCH functions we can find out the result more precisely.


3 Answers

Use INDEX to refer to a specific column in the named range (it can refer to a whole column), like this

=SUMIF(TripsData,"*London*",INDEX(TripsData,,2))
like image 70
chris neilsen Avatar answered Sep 19 '22 03:09

chris neilsen


You can do that without any named ranges at all, if you turn your data into an Excel Table object. Select any cell in the range or the whole range and click Insert > Table or hit Ctrl-T.

There will be a dialog that asks if your table has headers. Yours does. Now you can reference the table and its columns by their inherent names and build your formula like this:

=SUMIF(Table1[Expense],"*London*",Table1[Cost])

enter image description here

You can rename the table, of course, even after the formula is in place. When you click a cell in the table, there will be a new ribbon for commands that relate to tables only. It's a very powerful tool.

Any formulas, formatting etc. that apply to a whole table column will automatically carry over into new table rows. The table column reference will adjust automatically, too, of course, so you don't have to mess with dynamic range names or re-define what a named range applies to.

Note: the formula uses structured referencing instead of cell addresses. This option can be turned off by clicking File > Options > Formulas > tick or untick "Use table names in formulas"

like image 24
teylyn Avatar answered Sep 18 '22 03:09

teylyn


You can use Chris' idea of Index(Table1,,Col#) with the named range "Table1" (without creating an Excel table Object if you don't want to for some reason) and STILL avoid the problem Applez mentions in the comment below Chris' idea. Applez warns that using a constant for a column number reference is dangerous if you later insert another column before that column in the named range. You will find that Excel does NOT auto increment the constant, so your formula breaks.

Applez is right..... so DON'T use a constant, use a column number "reference" instead of a constant. For example....

=SUMIF(TripsData,"*London*",INDEX(TripsData,,Column(B1)))

If you later insert a column between A and B, Excel WILL auto increment the reference Column(B1) to Column(C1). Just don't delete B1 or Row 1 or you will get a REF error. I usually use the the header/tile "cell" (in whatever row that is in) for that table column within the Column reference (as it is highly unlikely I will ever delete the header/title cell of column of a table unless I delete the entire column). In this particular example as it turn out, B1 "IS" the the title/header cell for that column in the data table. So that is what I used for the example.

like image 22
user11929574 Avatar answered Sep 18 '22 03:09

user11929574