View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Jacob Skaria Jacob Skaria is offline
external usenet poster
 
Posts: 8,520
Default Summary by Months

=SUMPRODUCT((TEXT(A1:A10,"mmyyyy")="112009")*B1:B1 0)

OR

'with a date reference in cell C1
=SUMPRODUCT((TEXT(A1:A10,"mmyyyy")=TEXT(C1,"mmyyyy "))*B1:B10)

--
Jacob


"Furby73" wrote:

I am trying to make a summary of deliveries on a monthly basis

A B
1 1/11/09 20.19
2 2/11/09 19.81
3 1/12/09 25.00


i want to get the result where Nov 09 will be 40.0 and Dec 09 will be 25.0
but cant seem to make it work.
Can anyone please help me with a Formula?