Dec 13, 2001 #1 mlocurci MIS Oct 17, 2001 210 US I have a report where I count the amount of records, no problem there. I now need to count how many time a record =x. I have a field called [client]. It can equal BN or fb. I need to count it when its BN and when its fb, any ideas
I have a report where I count the amount of records, no problem there. I now need to count how many time a record =x. I have a field called [client]. It can equal BN or fb. I need to count it when its BN and when its fb, any ideas
Dec 14, 2001 #2 JerryDennison IS-IT--Management Jan 13, 2001 845 US Place two unbound controls in the report footer and use the following syntax for each: =Count(IIF([FieldName] = "BN", [FieldName], Null)) =Count(IIF([FieldName] = "fb", [FieldName], Null)) Upvote 0 Downvote
Place two unbound controls in the report footer and use the following syntax for each: =Count(IIF([FieldName] = "BN", [FieldName], Null)) =Count(IIF([FieldName] = "fb", [FieldName], Null))
Dec 14, 2001 Thread starter #3 mlocurci MIS Oct 17, 2001 210 US OMG that helped so much! Upvote 0 Downvote
Dec 14, 2001 #4 JerryDennison IS-IT--Management Jan 13, 2001 845 US You're welcome. Upvote 0 Downvote