Help with a Query Issue

tjb123

New Member
Joined
Mar 25, 2011
Messages
4
I'm new to Access and need some help with some data manipulation.

I have a database that tracks 8,000 unique individuals' participation in a series of 35 events. Not all individuals will participate in these events. There is one table that holds all of the data. Each of the 35 events has a check box to indicate participation.

I need to run a query or report that provides me with a list of people who particpate in one or more events (I want a total count of unique participants).

I have tried running a parameter query but I run out of space for the "or" statements since there are 35 unique events. How can I create this report and thanks in advance for your help. I really appreciate it.
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
It seems you have a normalization problem. I was just reading Roger's blog which is covering this issue. Perhaps that might help.

hth,

Rich
 
Upvote 0
Please don't tell me that your events table has a column for each event. Your persons/events table should have a ROW for each event. Your table structure should be something like this:

tblEvents
EventID - Autonumber (PK)
EventName - Text


tblPersons
PersonID - Autonumber (PK)
FirstName - Text
LastName - Text
...address and such

tblPersonsEvents
PersonEventID - Autonumber (PK)
PersonID - Long Integer (FK from tblPersons)
EventID - Long Integer (FK from Events)
 
Upvote 0

Forum statistics

Threads
1,214,615
Messages
6,120,538
Members
448,970
Latest member
kennimack

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top