View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
mp80237 mp80237 is offline
external usenet poster
 
Posts: 12
Default Sumproduct Search, Sum Durations

Hello, I have a table that I need to get information out of using Excel.
Below is a sample from the detail data.
systemslist severity Duration Minutes
Fare System - NG 3 25
Fares System 3 25
Fare System - NG 2 15
Fares System 1 5
System Issues - PM 3 35
System Issues 2 10
Air System, Production System, System Issues 0 4
System Issues 0 3
System Issues - PM 0 3
System Issues 3 10
System Issues 3 20
Air System, Production System, System Issues 1 29
System Issues 1 29
System Issues 1 29
System Issues 3 38


I have a summary page. I am getting correct numbers on the Count section,
but the duration section the numbers are off

Count Total Sev0 Sev1 Sev2 Sev3
Fares System 2 0 1 1 2
System Issues 11 3 3 1 4
Air System 2 1 1 0 0


Duration Total Sev0 Sev1 Sev2 Sev3
Fares System 2 0 4 4 8
System Issues 11 9 9 3 12
Air System 2 3 3 0 0

The formula for the count for the Fare System, Sev 3 is
=SUMPRODUCT(--(ISNUMBER(SEARCH("*Fare*",Sheet1!$A$1:$A$70)+SEARC H("3",Sheet1!$B$1:$B$70))))

That is working great.

The duration for Fare System, Sev 3 is
=SUMPRODUCT(--(ISNUMBER(SEARCH("*Fare*",Sheet1!$A$1:$A$70)+SEARC H("3",Sheet1!$B$1:$B$70))))*(Sheet1!$C$2:$C$70). That is not working right at all.

I was thinking of putting a coma after the first search, but it is saying
there are too many arguments for this function.

Please please help. Thank you so much!!