I have a large table of data and I am looking to sum only part of it. Here's how the data is laid out:
Account# Jan Feb Mar Apr May Jun Jul Aug Sep Oct Dec
What I'd like to be able to do is to sum part of the data of the row, let's say from May - Nov, for a second list of account numbers.
It occurred to me to use SUM in combination with INDEX/MATCH. So my formula would look something like this:
=SUM((INDEX(MATCH($A1,$B:$B,0),MATCH("May",5:5,0)):INDEX(MATCH($A1,$B:$B,0),MATCH("Nov",5:5,0)))
The individual MATCHes return the right coordinates, but the formula doesn't work. Any clues would be appreciated.
Also, if there is a better way to go about this please give me your opinion.
Account# Jan Feb Mar Apr May Jun Jul Aug Sep Oct Dec
What I'd like to be able to do is to sum part of the data of the row, let's say from May - Nov, for a second list of account numbers.
It occurred to me to use SUM in combination with INDEX/MATCH. So my formula would look something like this:
=SUM((INDEX(MATCH($A1,$B:$B,0),MATCH("May",5:5,0)):INDEX(MATCH($A1,$B:$B,0),MATCH("Nov",5:5,0)))
The individual MATCHes return the right coordinates, but the formula doesn't work. Any clues would be appreciated.
Also, if there is a better way to go about this please give me your opinion.