Please help
I finally finished my table and form with all the coding needed (yay!). However I'm trying to set up reports to print. I have a macro that will work to print them, but setting up the initial report has been problematic.
Report 1 - Frequency of Title
I want to have a report that has the title of a person making an inquiry (MD, DO, RN, PA, etc) - these values are in a list box on my form - so that I know that, like, in the month of January 4 MDs called in, 2 RNs, 6 PAs, etc. In addition to this, I have a yes no check box on my form asking if these titled values are faculty staff of my university. The problem I'm having is, the query is showing a title twice - I'm getting that 2 doctors inquired, and 2 doctors that were faculty inquired. I would rather the query show the TOTAL number of MD's that called together, and then the number of faculty that were those MD's as a subset. Make sense? Maybe I need to combine two queries, or it's something I can designate in the report, but I do not have any idea how to do this.
Example:
Title Total Requests Faculty Members Students
MD 3 1 1
Rn 3 1
So that would imply that of the 3 doctor request received, 1 was from faculty member, 1 from a student, 1 from an outside source. Make sense?
So, with that being said, I can get it to etiher do the total or it will list a title twice like this:
Example:
Title Total Requests Faculty Members Students
MD 2 1 1
MD 1
Where it shows 3 requests, but separates it out. Any fixes for this?