Search results

  1. C

    Counting in a query

    Here is my SQL SELECT tbl_CDS.[Organization Name], tbl_CDS.HRET_MeasureID, tbl_CDS.Project, tbl_CDS.[Start Date], Count(tbl_CDS.[Start Date]) AS [CountOfStart Date] FROM tbl_CDS GROUP BY tbl_CDS.[Organization Name], tbl_CDS.HRET_MeasureID, tbl_CDS.Project, tbl_CDS.[Start Date] HAVING...
  2. C

    Counting in a query

    I want to create a query that will count the number of data submittions over a set time frame. I have a table with organization name, measure id, start date and the data. I created a query to count start date for the date range 5/1/12-8/30/12. I only get a single count for each. Does this...
  3. C

    Unmatched Records

    I would like to create a query that shows unmatched records. I am using two files. File one contains hospital name with a checkmark for eacf of 10 quality initiatives they are working on. The second file is a data dump from the govt. It shows who entered data. I have a hopsital ID in...
  4. C

    Creating tabbed forms

    Are you referring to the forms wizard because I only see basic types of forms and not subforms.
  5. C

    Creating tabbed forms

    I am trying to create a form where you select an orgnaization at the top of the form and then all the tabs displays that orgnaizations information. For example the tabs would include contact history, reports, demographic information. How can I make this happen? DO I need to use a set of...
  6. C

    Cascading Query ( I think)

    Will this work with charting?
  7. C

    Parital Search function

    I have built a search form using the VBA code below. The problem is the search fucntion requires only returns a search for complete answers. Example if I have Steve Smith and seach for either Steve or Smith I get no results. When I include the entire name it finds a match. How can I write...
  8. C

    Cascading Query ( I think)

    My end goal is to create a form with a line chart. A person would select the organization and then the data indicator. I thought by creating two queries, one with organization name and the other with the data indicator fields. I had thought if you selected organization first, I would only...
  9. C

    Missing Data Report Need Ideas on how to do this

    Thank you, this was a simple but effective solution.
  10. C

    Missing Data Report Need Ideas on how to do this

    I am new to Access and have little experience with VBA. Each month I receive a flat file of data from 265 teams. I need to make sure each team enters data each month. If a team does not enter data, then it is not in the flat file for the month. How can I create a report to identify missing data.
  11. C

    Access Form Help with selection of organization then update

    It has been a while since I used Access and I have no programming skills. I have a desgined a form that can be used to record whether an organization offers particular sporrts. ON the form I have a dopdown with the organization name and 10 check boxes with sports next to each one. All is in...
  12. C

    Update Query Need Assistance

    Good afternoon. I have a database with 3 tables. Table 1 conatains organization name and CMS_ID number. Table 2 only contains organization name and no primary key. I am trying to create a new field in the Table 2 with the CMS_ID from Table 1. Is this possible. In short I need to create a...
  13. C

    Drop-down list n parameter query

    Here is mh SQl code SELECT tbl_CDS.[Organization Name], tbl_CDS.Project, tbl_CDS.Measure, tbl_CDS.[Data Collected], tbl_CDS.Numerator, tbl_CDS.Denominator, tbl_CDS.[Measure Rate], tbl_CDS.Timeframe, tbl_CDS.[Start Date], tbl_CDS.[End Date] FROM tbl_CDS GROUP BY tbl_CDS.[Organization Name]...
  14. C

    Drop-down list n parameter query

    Bob, I tried what you suggested and this did not work. I have included in a report header the dropdown box. When I run the report I still get the parameter box from the Query. In the query I referenced the dropdown box. Can you assist me?
Back
Top Bottom