Recent content by JHMarshIII

  1. J

    How to Create an Exeception Report

    Sorry all, I am barely a newbie programmer, I need help with structuring a complex query to drive an exception report. Relationships and Background: ----------------------------- I have four tables, Buildings Member-Volunteer Jobs-Willing-To-Do Job-Roles Key related fields...
  2. J

    Data Type Mismatch - recordsetclone's bookmark

    Resolved memidlu is a combo control on a form. The .value and dropping the single quotes made the difference. Thanks for the structure suggestion. John...
  3. J

    Data Type Mismatch - recordsetclone's bookmark

    Ok, OT, but can you help me to understand the syntax of this statement, I am confused by the single, double quotes and the appersand: FindFirst "[mid] = '" & Me![MemIDLU] & "'"
  4. J

    Data Type Mismatch - recordsetclone's bookmark

    The following code fails with Data Type Mismatch at the statement: .FindFirst "[mid] = '" & Me![MemIDLU] & "'" mid is a autonum (long integer) so I assumed it was the quotes. MemIDLU is a control on a form. But if I remove the quotes, then I get MemIDLU is not a field or expression in the...
  5. J

    Testing Bookmark for not found

    Thanks Thank you, the code works great.
  6. J

    Testing Bookmark for not found

    Iv'e got a form that uses a key (UnitKey) to look up the record if the key is found. If found I want the focus to move to a particular control, if not found I want the focus to move to another inquiry control. I think my code is wrong when I try to test the result for the If/Then statement...
  7. J

    Can Tabs be on the Bottom of Page?

    I'd like to have my tab controls appear across the bottom of the tabbed page. Is this possible in AC2K?
  8. J

    Deadline! Count clients only once who come multiple times?

    If it is the null values creating your problem you might try using the Nz Function to pre-fill the nulls.
  9. J

    Testing the count of related records in the many side table.

    How do I test the count of related records in the many side table? I have two tables, Members and DuePmts joined on MemberID. Members have a 1-to-many relationship to Duepmts. As payments are posted to DuePmt records, a new ExpireDT assigned. What I need to do is create a query (to drive a...
  10. J

    Counting Nulls With Dcount In Group Footer

    Thanks for the feedback. What I ended up doing was adding an expression to the underlying query: NewMem: Nz([MemberID]),"New") to convert the nulls to a text value that could be evaluated as a control in the report. This is not the way I really wish to accomplish this, because MemberID is not...
  11. J

    Counting Nulls With Dcount In Group Footer

    I have read all that I can and still can't figure out what is wrong with my syntax. I am trying to count the null occurances of a field within a report. I tryed this in the group footer: =DCount("[MemberID]","FinTreasCampRpt","[MemberID] is null") I know I have records that meet the null...
  12. J

    Installing and Using the Access Runtime

    Just view? Won't the access runtime permit the end-user to update tables, queries, DB application permitting?
  13. J

    Installing and Using the Access Runtime

    How do I install the runtime? I own a copy of O2K Pro and recently bought the Developer disks at a steep discount. This was the equivalent of buying O2K Developer. I want to distribute my DBs in exe format. When Auto-running the CD it puts the whole MSDN library and other stuff on my...
  14. J

    Sudden "Record Set Not Updatable" - Form

    Phew! That did it. It was a third table I added to the query at a later date in error. Thanks!
  15. J

    Sudden "Record Set Not Updatable" - Form

    I did look at this help area, no luck. I will look again.
Back
Top Bottom