Sumproduct question

  • Thread starter RJS76 via OfficeKB.com
  • Start date
R

RJS76 via OfficeKB.com

Hi all,

With the help of the sumproduct formula I'm trying to count how many tickets
were created by our Servicedesk team sorted by division of the reporter of
the incident.

In my spreadsheet Column N shows the groups that can create tickets and
column T shows the division of the reporter of the ticket.

I used this formula:

=SUMPRODUCT(('Data SD Opened'!N2:N65536="dlo-NL-HDK*")*('Data SD Opened'!T2:
T65536="*Concernstaf*"))

The result I get is 0 even though there are tickets from the division
Concernstaf.

Can somebody please tell me what's wrong in my formula?

Any help would be greatly appreciated.
 
B

Bob Phillips

=SUMPRODUCT(--(LEFT('Data SD
Opened'!N2:N65536,10)="dlo-NL-HDK")--(ISNUMBER(MATCH("Concernstaf",'Data SD
Opened'!T2:T65536))))

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)
 
R

RJS76 via OfficeKB.com

Thanks for your reply.

When I use your formula I get the same result (0). When I filter the
spreadsheet for Concernstaf it shows me 8 results.

Any other suggestions?


Bob said:
=SUMPRODUCT(--(LEFT('Data SD
Opened'!N2:N65536,10)="dlo-NL-HDK")--(ISNUMBER(MATCH("Concernstaf",'Data SD
Opened'!T2:T65536))))
[quoted text clipped - 16 lines]
Any help would be greatly appreciated.
 
D

daddylonglegs

Bob,

I presume you meant to use SEARCH not MATCH

=SUMPRODUCT(--(LEFT('Data S
Opened'!N2:N65536,10)="dlo-NL-HDK")--ISNUMBER(SEARCH("Concernstaf",'Dat
SD Opened'!T2:T65536))
 
D

daddylonglegs

Hi, did you try my version, unfortunately managed to insert my own typ
(missing comma). The edited version above should work for you

=SUMPRODUCT(--(LEFT('Data S
Opened'!N2:N65536,10)="dlo-NL-HDK"),--ISNUMBER(SEARCH("Concernstaf",'Dat
SD Opened'!T2:T65536))
 
R

RJS76 via OfficeKB.com

Thanks, that did the trick!
Bob,

I presume you meant to use SEARCH not MATCH

=SUMPRODUCT(--(LEFT('Data S
Opened'!N2:N65536,10)="dlo-NL-HDK")--ISNUMBER(SEARCH("Concernstaf",'Dat
SD Opened'!T2:T65536))
 
Top