VLOOKUP or SUMIF for Multiple Criteria

R

Rob Kein

Im hoping this is possible. I am looking for a formula that will sum
large range of data in a specified column corresponding to multipl
criteria that does not repeat. Example below

Fee Type 12/31/2012 3/31/2013 6/30/201
Fee Type 1 100 110 12
Fee Type 2 150 160 17
Fee Type 3 125 135 14
Fee Type 4 100 110 12

What I need to do is look up all fee types, and sum all correspondin
values in the specified column as this data is consolidated into anothe
report. There are dozens of lines of fee types so I want to referenc
that range, and reference the correct column based on time period. Doin
a simple SUM is not useful as the column shift often and it would b
easier to reference a cell that corresponds to the column I need to sum
Any thoughts? If this is not clear and I need to provide mor
information please let me know.

VLOOKUP will only work for 1 Fee Type and I don't want to have to typ
the formula for EVERY SINGLE Fee Type
SUMIF doesn't let me reference a column number and would still need t
be written dozens of time

Thanks
 
S

Spencer101

Rob said:
Im hoping this is possible. I am looking for a formula that will sum
large range of data in a specified column corresponding to multipl
criteria that does not repeat. Example below:

Fee Type 12/31/2012 3/31/2013 6/30/2013
Fee Type 1 100 110 120
Fee Type 2 150 160 170
Fee Type 3 125 135 145
Fee Type 4 100 110 120

What I need to do is look up all fee types, and sum all correspondin
values in the specified column as this data is consolidated into anothe
report. There are dozens of lines of fee types so I want to referenc
that range, and reference the correct column based on time period. Doin
a simple SUM is not useful as the column shift often and it would b
easier to reference a cell that corresponds to the column I need to sum
Any thoughts? If this is not clear and I need to provide mor
information please let me know.

VLOOKUP will only work for 1 Fee Type and I don't want to have to typ
the formula for EVERY SINGLE Fee Type.
SUMIF doesn't let me reference a column number and would still need t
be written dozens of time.

Thanks!

Could you provide an example workbook with a larger example of th
data?
Also some idea of the required outcomes would be a good idea
 
K

Kevin@Radstock

H
Assuming your data is in A1:D

=IF(COUNTIF($A$2:$A2,$A2)>1,"",SUMIF($A$2:$A$5,$A2,B$2:B$5)
Copy across & down. Adjust your ranges to suit, is this of any help
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top