hi,
> My Expression builder code is =Count([DepPlusSize]="2320")
Try =Sum(Iif([DepPlusSize]="2320";1;0)) in your footer.
mfG
--> stefan <--
Try:
= - Sum([DepPlusSize] = "2320")
Omit the quotes if DepPlusSize is a Number field (not a Text field.)
The expression inside the brackets is True or False (or Null) for each
record. Access uses -1 for True, and 0 for False. Therefore summing the
expression gives the negative count of the cases where the expression is
True.

Signature
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
> Hi all,
>
[quoted text clipped - 11 lines]
>
> Cage
cage4000 - 12 Mar 2007 17:12 GMT
That worked! Thank you Stefan and Allen for your help on this one.
> Try:
> = - Sum([DepPlusSize] = "2320")
[quoted text clipped - 21 lines]
> >
> > Cage