Summing Up Data Based on Codes

A

addie

I have a spreadsheet with several rows of data. Each row's data
corresponds to a code that appears in the 1st field of the row.

Example:

*Codes*:..............*Revenue*:......*Responses*:
AAAAAAA1..........$1,000.........500
BBBBBBBB3.........$2,000.........200
CCCCCCC1.........$3,000.........300
DDDDDDD2.........$4,000.........9000

What formula would enable me to sum up the revenue & responses on rows
that only correspond to codes that end in '1'?

Addie
 
G

Guest

Try this for your Revenue:

=SUMPRODUCT(B1:B100,--(RIGHT(A1:A100,1)="1"))

And for your responses:

=SUMPRODUCT(C1:C100,--(RIGHT(A1:A10,1)="1"))

HTH,
Elkar
 
A

addie

Thanks Elkar. It worked.

One more question...

If I wanted to do a vlookup that incorporated that logic, what forumla
could I use?

Addie
 

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