View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Teethless mama Teethless mama is offline
external usenet poster
 
Posts: 3,718
Default Search function needed (sumproduct?)

SUMPRODUCT(--($A$4:$A$300=36),--(TEXT($C$C4:$C$300,"mmm-07")="Jan-07"),$X$4:$X$300)


"Charlie7805" wrote:

I need to explain further... The date search is for all day in a specific
month as opposed to a specific date. (ie - find all dates in Jan 07)

"JE McGimpsey" wrote:

One way:

=SUMPRODUCT(--(A1:A300=gr_num),--(C1:C300=DATE(2007,04,19)),X1:X300)

In article ,
Charlie7805 wrote:

I'm using the following in another cell which works fine.
=SUMPRODUCT (($A$4:$A$300=36)*($B$4:$B$300="SALE")*($G$4:$G$30 0="Rob"))

I'm trying to create another formula where column A has group numbers,
column C has dates, column X has costs...I need to sum all cost where columns
A & C are true. How do I handle dates with this formula.

Thanks in advance

C.