How can I add up lookups? Finding days in a week of a month

  • Thread starter Michael at Thin Air
  • Start date
M

Michael at Thin Air

I have a table that has columns of days, 1-31 and another column with the day
of the week, Mon-Sun and then various columns of numbers for each day of the
month.

I want to be able to a get sum of all the numbers for each day of the week.
I am using lookup but this is only returning the last incidence and I need
all the numbers added together. Example, I need all widgets sold on Saturday
for the month.

TIA
 
D

daddylonglegs

Michael said:
I have a table that has columns of days, 1-31 and another column wit
the day
of the week, Mon-Sun and then various columns of numbers for each da
of the
month.

I want to be able to a get sum of all the numbers for each day of th
week.
I am using lookup but this is only returning the last incidence and
need
all the numbers added together. Example, I need all widgets sold o
Saturday
for the month.

TIA

If your days are in column B and he amounts you want to sum in colum
C

=SUMIF(b:b,"Sat",c:c
 
Top