Counting Start Dates for Projects that have not started?

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

Guest

I have been trying to write a query to count the number of start
dates for projects that have not started yet.
 
Ok, do you have a ScheduleStart and ActualStart dates? Or just StartDate
that is null before starting.
If the latter then just count nulls. Expr1: IIF([StartDate] Is Null, 1,
0) and sum the field.
 
Back
Top