Dec 13, 2001 #1 mlocurci MIS Joined Oct 17, 2001 Messages 210 Location 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 Joined Jan 13, 2001 Messages 845 Location 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 Joined Oct 17, 2001 Messages 210 Location US OMG that helped so much! Upvote 0 Downvote
Dec 14, 2001 #4 JerryDennison IS-IT--Management Joined Jan 13, 2001 Messages 845 Location US You're welcome. Upvote 0 Downvote