How do I

  • Thread starter Thread starter Jody S
  • Start date Start date
J

Jody S

I have a list of states I travel in all month long (column A) and the miles I
travel listed in (column B) each time I go there.
I need to be able to pull the state and the mile for that state and get a
total for the month (for taxes) Does anyone know how??
Example:

A B
States Miles
GA 55
FL 50
KY 78
GA 78
AL 100
FL 99
AL 87
 
Sumproduct will work for each state

=Sumproduct(--(A1:A10="GA"),B1:B10)

the --(a1:a10="GA") when true =1 when false=0 so will only total values
meeting the criteria

You can subsititute a cell ref (ie =D1) and copy down as needed
 
Back
Top