R
Ron H
I have a sheet of business data.
There are 3 locations of service and I want to count the numbers o
sales in each location over a given time period.
Column C has the dates of sales
Column H has the location
I tried to get count for sales for the current month of June 2004 a
location A
=SUMPRODUCT((C5:C309>"5/31/2004")*(H5:H309="A"))
and I get 0 (which is wrong.)
I took out the quotes around the date value
=SUMPRODUCT((C5:C309>5/31/2004)*(H5:H309="A"))
and I get a number which is much too high and is obviously incorrect.
What am I doing wrong
There are 3 locations of service and I want to count the numbers o
sales in each location over a given time period.
Column C has the dates of sales
Column H has the location
I tried to get count for sales for the current month of June 2004 a
location A
=SUMPRODUCT((C5:C309>"5/31/2004")*(H5:H309="A"))
and I get 0 (which is wrong.)
I took out the quotes around the date value
=SUMPRODUCT((C5:C309>5/31/2004)*(H5:H309="A"))
and I get a number which is much too high and is obviously incorrect.
What am I doing wrong