SOMPRODUCT

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Dear Excel(lent ) users,

I am trying to see how many incidents from a certain type are open. To do
this you have to look in two columns to retrieve that information. I tried
this with SOMPRODUCT (SUMPRODUCT in English).

I tried
=SOMPRODUCT(--('Data entry'!K3:K65534)="Ja");--(('Data entry'!D3:D65534)="")
But that did not work.

Column K has the types of the incidents (either 'Ja' [yes] or 'Nee' [no]).
In column D dates are filled in if the incident are closed. If it is open
there is no date.

I hope this makes sense 2 u, if not feel free to ask me !!

Thanks very much !!
 
Try

=SOMPRODUCT(--('Data entry'!K3:K65534="Ja");--(('Data entry'!D3:D65534=""))

HTH
 
Perfect, thanks !!
--
** Fool on the hill **


Toppers said:
Try

=SOMPRODUCT(--('Data entry'!K3:K65534="Ja");--(('Data entry'!D3:D65534=""))

HTH

Jaydubs said:
Dear Excel(lent ) users,

I am trying to see how many incidents from a certain type are open. To do
this you have to look in two columns to retrieve that information. I tried
this with SOMPRODUCT (SUMPRODUCT in English).

I tried
=SOMPRODUCT(--('Data entry'!K3:K65534)="Ja");--(('Data entry'!D3:D65534)="")
But that did not work.

Column K has the types of the incidents (either 'Ja' [yes] or 'Nee' [no]).
In column D dates are filled in if the incident are closed. If it is open
there is no date.

I hope this makes sense 2 u, if not feel free to ask me !!

Thanks very much !!
 

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

Back
Top