SUMIF

G

Guest

What I have is a list in column a of invoice numbers that either end in a
letter or a number & what I need to do is add up the invoice values from
column B for all the invoices that have a number at the end of them in column
A
ie
Cell A1 Invoice, B1 Amount
A2 "aaa111", B2 £100
A3 "bbb222", B3 £200
A4 "xxxxxx", B4 £150
A5 "zzzzzz", B5 £300
So I want to have the sum of B2 & B3 as these have invoicce numbers ending
in a number.

Any thoughts on doing this?

John
 
G

Guest

Hi

Here's a bit of a long solution - and I'm sure someone will post something
more elegant!
=SUMPRODUCT((NOT(ISERROR(VALUE(RIGHT(A2:A5,1)))))*(B2:B5))

Andy.
 

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