Help me out, pleeeeeze!! I’m having problems creating a report base on a query.
I have two tables for a test department/activity database (Which department hosts which activity). They are:
DPT
DPT_ID (PK)
DPT_NAME
ACT
ACT_ID(PK)
ACT_NAME
DPT_ID(FK, referencing DPT.DPT_ID)
This is simple, but it works fine for now (I’ll be spicing it up later.).
I created a form, did some data entry, and everything worked fine.
I then created a query to retrieve the departments and their activities:
select DPT.DPT_NAME, ACT.ACT_NAME
from DPT, ACT
where DPT.DPT_ID=ACT.DPT_ID
I ran this query, and it worked fine. I called it qxSelAll.
Here’s the problem. So far, everything is working well. I go to make a report and select the wizard. The wizard asks me what I want to base the report on, and I choose qxSelAll from the dropdown menu.
At this point, Access freezes. Every time. I have to bring the task manager up and get out of Access. Did I do something wrong with the query?
I’m running Access 2000 on Windows XP. The report wizard works fine on anything else. Once again, the query itself runs without a hitch, and I don’t have any problem entering data. Any thoughts?
Free cheesecake to the person who gets me through this, the next time you come to Boston.