View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson Dave Peterson is offline
external usenet poster
 
Posts: 35,218
Default Need help with Count, Counta, Countif

Try:

=sumproduct(--((D18:D1769<""),--(B18:B1769=B5))

Adjust the ranges to match--but you can't use whole columns (except in xl2007).

=sumproduct() likes to work with numbers. The -- stuff changes trues and falses
to 1's and 0's.

Bob Phillips explains =sumproduct() in much more detail he
http://www.xldynamic.com/source/xld.SUMPRODUCT.html

And J.E. McGimpsey has some notes at:
http://mcgimpsey.com/excel/formulae/doubleneg.html

Ayo wrote:

I have a sheet with 2 columns, A & B. Column A contains list of market (non
unique) and column B contains dates. I am looking for a way to perform a
count using both coulmns. Say for instance, I wan t to know how many MarketA,
or MarketB in column A has a date in column B, how would I go about writing
that formular?
I tried this =COUNTA(IF((D18:D1769<"")*(B18:B1769=B5),)) but it only
results in 1.


--

Dave Peterson