Sum fields if values of another fill equals specific value?

  • Thread starter Thread starter david.isaacks
  • Start date Start date
D

david.isaacks

I have a report with three fields. [Facility] [Month] [Count]

The month field either equals "February" or "March". I want to have a
text box that sums the Count field only if the Month Field equals
"February".

Any ideas?

Dave
 
base your report on a query

and then in the criteria of the calc field you can do an Iif function based
on the string value of the month field....
 
Back
Top