Help with conditional format

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

Guest

I need to count the number of Cells in Column D that are not blank (that
column contains dates) AND has Amanda in Column C in the same row.
 
try
=sumproduct(--(D1:D1000<>""),--(C1:C1000="Amanda"))
the --( changes the logical true false to a numeric 1 0
and the arrays in each section needs to be the same size but cant be the
full column or row shorthand (A:A won't work)
 
Hi!
cant be the full column or row shorthand (A:A won't work)

Sumproduct will work on entire rows but not on entire columns:

=SUMPRODUCT(--(1:1="x"),--(2:2="y"),3:3)

Biff
 

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