Sumproduct question

  • Thread starter Thread starter RJS76 via OfficeKB.com
  • Start date 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.
 
=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)
 
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.
 
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))
 
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))
 
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))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

SUMPRODUCT troubles 2
sumproduct problem 6
Sumproduct syntax when using AND, OR 3
Sumproduct help 11
Sumproduct help 3
Count based on date criteria 1
HELP!!! On SumProduct 2
Sumproduct Help! 2

Back
Top