No, it's a calculated field that I am adding in a report.
"Dale Fye" wrote:
> Are you actually trying to do this in the report or in the reports query? Is
> the field [qualified] actually a text field, or a Yes/No field?
>
> 1. If you are doing this in a query, and the [qualified] field is actually
> a Yes/No data type, then it will have to be a group by query and the column
> in the query grid would look something like:
>
> NumQualified: ABS(SUM([Qualified]))
>
> 2. If you are doing it in a query, and the [qualified] field is text then,
> try:
>
> NumQualified: ABS(SUM(IIF([Qualified] = "yes", 1, 0)))
>
> HTH
> Dale
> --
> Email address is not valid.
> Please reply to newsgroup only.
>
>
> "Sprowler" wrote:
>
> > I am trying to put in an calculated field in my report. I have a field
> > called "qualified" and in the field I would like it to total the number of
> > "yes" fields. I have tried =iff([qualified] = "yes",count"yes") but that
> > doesn't work. I think I am close. Does anyone have any suggestions.
|