View Full Version : multiple date counting


russi
08-01-2001, 11:17 AM
I have a table with 3 fields, one for each of 3 goals that could be reached by clients.
There are corresponding dates.

I need a query that will count the number of clients who have a value in the date field.
I tried individual and then doing a crosstab but it didn't work correctly.
What am I missing?

thanks.

Russ

Rich
08-01-2001, 12:10 PM
Totals Query:Group By Clients, Count DateField, Not Is Null in the criteria of your date field.

russi
08-02-2001, 06:46 AM
Thanks, Rich!
Worked great.

Russ