Ok, I have searched this, and I have tried some of the things that where shown(most for 2003) and it hasn't worked yet or I didn't understand what they ment.
I am using MS Access 2007. I have a report that prints out peoples names, which events they went to and the type of events... on the bottom I have totals, which works great if I am just pulling the report on 1 person. But if i need to pull a report on say an office... then it counts the duplicate events, and types...
Currently, I have a text box for
This way it makes a 1, for each event... then in the footer I have ...
in order to count
I need to be able to count each individual event... and not duplicates... how to do this? Please give as detailed as you can as I haven't been able to figure it out yet.
I am using MS Access 2007. I have a report that prints out peoples names, which events they went to and the type of events... on the bottom I have totals, which works great if I am just pulling the report on 1 person. But if i need to pull a report on say an office... then it counts the duplicate events, and types...
Currently, I have a text box for
Code:
= IF([EventTitle] <> null, 1,0) **NOT EQUAL
This way it makes a 1, for each event... then in the footer I have ...
Code:
=Count([EventTitle])
I need to be able to count each individual event... and not duplicates... how to do this? Please give as detailed as you can as I haven't been able to figure it out yet.