I have a report that I would like to ldo a like count on. I'm using the
following code at the top of the form
=Abs(Sum([RSID]="1D1*"))
=Abs(Sum([RSID]=Like "1D1" & "*"))
And I could not get it to work.
> I have a report that I would like to ldo a like count on. I'm using the
> following code at the top of the form
[quoted text clipped - 3 lines]
>
> And I could not get it to work.
You were almost there.
=Abs(Sum([RSID] Like "1D1" & "*"))
or
=Abs(Sum([RSID] Like "1D1*" ))

Signature
Fred
Please only reply to this newsgroup.
I do not reply to personal email.
KAnoe - 07 Jan 2005 18:18 GMT
Thanks
> > I have a report that I would like to ldo a like count on. I'm using the
> > following code at the top of the form
[quoted text clipped - 9 lines]
> or
> =Abs(Sum([RSID] Like "1D1*" ))