Recent content by ed333

  1. E

    compare strings in SQL

    Well, at any rate, thanks! It's working for now!
  2. E

    compare strings in SQL

    Thanks!!! That worked! The full field is "OFF", but I tried your suggestion and seem to be getting the correct results now! All that is in the field is either "OFF" or nothing at all. Are there other 'invisible' characters being added to the fields that don't show up as text that cause the...
  3. E

    compare strings in SQL

    Thanks for the suggestion...I tried that with no luck. :( If I leave the criteria box blank for the field in question, I get results where (in the field I am concerned with) some of the records have "OFF" and some have no entry. Why doesn't <>"OFF" give me all the records that don't have "OFF"...
  4. E

    compare strings in SQL

    Thanks for the reply....I tried putting both criteria in a single box (I'm using the Design View) like this: (<>"OFF") OR (Not Null) I'm still getting no records returned!!! All I want are records that do not have the word "OFF" in that one field, and I'm not sure why simple string comparison...
  5. E

    compare strings in SQL

    Hi, I am having a similar problem in Access XP, and the above suggestions do not seem to be working. I have a query that needs to select all records except those that have the word "OFF" in a certain field. This field either has "OFF" or is unpopulated, however, someone could put in an "OFF"...
  6. E

    Wide Report Header

    Hello all, I am trying to find a way to put a header on my report that extends all the way across the page, while the body of the report maintains 1" margins from the right and left sides. Is this possible? My company really wants their letterhead graphic inserted at the top of the report...
  7. E

    Memo field cut off on report

    Removing the word "Distinct" from the sql worked. I guess I didn't really need it anyway, since I have my autonumbered primary key being selected as one of the fields. Thanks! Ed
  8. E

    Memo field cut off on report

    It's too big to post, and the data is sensitive client data for my lawfirm. I can post the structure with no data, though. I'll be at the office later this afternoon (Saturday 11/13) and attempt to do so. Thanks Ed
  9. E

    Memo field cut off on report

    Additional information I have discovered that the field is being truncated due to a query: SELECT DISTINCT tblCharges.CHGATTY, tblCharges.RESPATTY, tblCharges.CLNTNO, tblCharges.FILENO, tblCharges.DATE, tblCharges.RecordNumber, tblCharges.CHARGE, tblCharges.UNITS, tblCharges.RATE...
  10. E

    Memo field cut off on report

    Hello all, I have discovered a very disturbing problem in my project. Some of the memo fields are being truncated when my report is being generated, even though I have CanGrow set to Yes for this particular textbox. The data is retained in the table, and displays perfectly on the form, but I...
  11. E

    Code to delete duplicates not working, too slow

    Thank you for the advice. I was not aware of the different binding. I will reasearch this and try to rewrite my code. Is there a speed advantage to early binding? Thanks, Ed
  12. E

    Code to delete duplicates not working, too slow

    Is there anyone who could help me? Please? Thanks Ed
  13. E

    Code to delete duplicates not working, too slow

    Please see http://www.access-programmers.co.uk/forums/showthread.php?t=63432 for a details about this problem. I'm not sure how to turn a find duplicates query into a delete query. Thanks, Ed
  14. E

    Code to delete duplicates not working, too slow

    I wrote this code to cycle through my table and delete any duplicates. I'm having two problems with it, though. For testing purposes, I've redirected some output to the immediate window. When run it appears to be working, however no dupes are being found. I find this odd, because a find...
  15. E

    Remove Duplicate Entries

    It turned out to be a reference error. I've got the code running right now on a test copy of the data. It's slow. Very slow. However, after a bit of tweaking, it seems to be doing the job! Thanks for all your help, everyone. Ed
Back
Top Bottom