Recent content by carpstar

  1. C

    exclude records from a find duplicates query

    Rob, No that didn't do it, it returned the same data. The query is returning data in grouped duplicates as follows. example 1 FirstName John John John LastName Smith Smith Smith SSN...
  2. C

    exclude records from a find duplicates query

    Hi to all that may see this post, it's been almost 18 months since I last posted here. I have a find duplicates query (created using the wizard) that matches duplicates by LastName and FirstName. SELECT [dup donors no zero zip].LastName, [dup donors no zero zip].FirstName, [dup donors no zero...
  3. C

    find duplicate records in table using soundex

    Can anyone offer help or direction on this. Thanks
  4. C

    "Between" staement in Query: Need on Report

    Add a text box to the report header and set the record source as. =" Week Of: " & [Enter Start Date] & " Thru " & [Enter End Date] With "Week Of" being any text u want ie: Date Range etc. Data in parenthesis must be same as in query
  5. C

    find duplicate records in table using soundex

    pairing duplicate records in a table Need help and know no to very little code. Have a table DONORS that has assigned Soundex for finding possible duplicate donors. The fields I need to compare are Soundex,Lname.Fname,DOB,DonorId so that when I create a report from the query I can group...
  6. C

    append query is multiplying records

    Hi all, I am trying to append records to a table "Drive assignments" this table is currently being populated solely by user input via a form. User currently enters all data ie: drivedate, drivesite,drivestartime,driveendtime,driverstartime,drivergotime, driverendtime,etc.. I have set up an...
  7. C

    compare data in query to field in table return difference

    Pat, Thank you very much. I didn't even think to look for the query wizard. I've tackled lots tougher access problems than this on my own before--I don't know where the mental block came from on this one though. I can't spend as much time as i would like learning access. It's difficult without...
  8. C

    compare data in query to field in table return difference

    Is this post slipping past everyone, has it been addressed in another post. Could someone respond, perhaps my question is so dumb that its being ignored. Please anyone.
  9. C

    compare data in query to field in table return difference

    Hello to all... Please if anyone can help with this. Have table "Staff" and table "StaffHrs" which is populated by user entry. Have query "StaffHrs report" to generate report from StaffHrs table. This is what I'm trying to do: When "StaffHrs report" is ran I need for the StaffId#s that are...
  10. C

    Using Count(*)in report with date parameters

    Viola I got it to work!!! I put text box in details section of report named it RecordCount and put record source =1 and visible as no. Then put textbox in footer and record source =RecordCount. Thanks
  11. C

    Using Count(*)in report with date parameters

    I have checked the archive for distinct count and it seems to me that no one has given a clear answer on returning a distinct or unique count. With some of the other problems I got help with on this forum I'm sure someone can explain this in laymens terms. Thanks again for assisting us less...
  12. C

    Using Count(*)in report with date parameters

    Thanks Sohaila, But I still can't do what I need. I'm not good with VB code at all. Report is pulled up by date range (A given week) so JAMES may have 5 records that are summed on the report which only shows the summary (no datails) When I put a textbox in the header or footer with Count(*) in...
  13. C

    Using Count(*)in report with date parameters

    I have a report that sums work hours for each employee in a given date range. I added a text box to count the Name field. Like this =Count(Name). But even though each employees name only appears once on the report, the Count(Name) counts all records for each employee in the date range. How do...
  14. C

    need help creating report from query/total hrs worked for week

    Hi all, I have a query that gets daily hrs worked by employee from a Staff Hours table. The query pulls these fields from table by input date range. Date, EmployeeID, Name, Dept#, WorkHrs, OtherHrs, TotalHrs,. My question is how can I create a report with similar layout as follows. I've...
  15. C

    Selecting both fields displayed in combo box

    Hello everyone. I created a combo box that displays two fields from a query "FirstName" "LastName" I need for both fields to appear in the combo box once choice is selected so that both FirstName and LastName are updated as one field in designated table. I was always told to separate names...
Back
Top Bottom