The Count RDL aggregate function works similar as the Count aggregate in
SQL: it will count all rows that are NOT NULL. The expresson
Fields!Accept.Value="Y" will return a boolean value (true/false) for all
rows, that's why the count results in the value 4.
Besides using =Sum(iif(...)) as shown by Liz, you could also use
=Count(iif(Fields!Accept.Value="Y", 1, Nothing))
-- Robert

Signature
This posting is provided "AS IS" with no warranties, and confers no rights.
> Liz;
>
[quoted text clipped - 36 lines]
>>>
>>> Wayne
Wayne Wengert - 31 Oct 2005 02:57 GMT
Robert;
Thanks for that additional information. It helps me understand the process.
Wayne
> The Count RDL aggregate function works similar as the Count aggregate in
> SQL: it will count all rows that are NOT NULL. The expresson
[quoted text clipped - 49 lines]
>>>>
>>>> Wayne