Recent content by DJ_DEF_CON_1

  1. D

    Keeping conditonal formating with the cell

    Thanks! Thanks very much. That works like a charm
  2. D

    Keeping conditonal formating with the cell

    I have created a mapping spreadsheet where users can hi-light and move cells around a map with other information and the spreadsheet would show the updated information with it. Here we go: Cell A1 has some conditional formatting 'IF B$1$ <> C$1' then change the color of the cell. The user...
  3. D

    Adding a fixed number to a date

    I have a text box on a form that contains a fixed number (9) for example. I have a date and time field and I would like to add them together. The problem I am finding is that when I add them together the text box adds 9 days as opposed to 9 minutes. How do I get it to do that?
  4. D

    DLookup multiple Criteria

    Thanks - That solves the problem
  5. D

    DLookup multiple Criteria

    I keep getting a syntax error for the following. Could someone look it over and see if they can figure out what I am doing? =DLookup("CONV_FACTOR","DM_PLUS_ITEMCONFIG_UOM", ("ITEM_NUM = ITEM_NUM") And ("DFLT_CONFIG = CONFIG") And (“UOM_TYP_TXT = “PAL"”))
  6. D

    If Statement

    Thanks - I learned something new. I appreciate the help.
  7. D

    If Statement

    I have a hidden form with a text box field that I am trying to query. The following is giving me problems. Any ideas? If Forms![SCRATCH_PAD]![tbxUSER_ID] = 'DELUCAK' Or 'MOULTONM' Or 'ROBERTSD' Or 'SCALFD' Then When I select the command button that has the above as an event procedure, I get a...
  8. D

    Access is adding quotation marks on its own

    Please forget it. I have now noticed that this field is a text box, not a date field
  9. D

    Access is adding quotation marks on its own

    It is a regular select query. Under one field I put >now()-30 and after I exit it looks like this >now()-"30"
  10. D

    Access is adding quotation marks on its own

    I am working in a query. In the last few days something has happened where quotation marks are being added to any criteria I am adding. I have to go into SQL mode to delete the quotation marks. Does anyone have any ideas?
  11. D

    Appending from a text box

    I put the changes into my database exactly as directed above and had no issues. Could you be more specific? The directions that are the most critical are the following: What is missing from this equation would be another table to base the form and report off of. call it tblTBox and have only...
  12. D

    Tab order - Different parts of form

    I am having trouble moving the tab order from a Text box in the detail section of the form to a command button in the form footer. Does anyone have any ideas? Thanks:confused:
  13. D

    Repair and Compact

    I am running Access 97 and am trying to repair and compact a database. I can repair it fine (Or so it says), but on compacting, I get the following message. "Record(s) can't be read; no read permission on "My database" Any ideas would be appreciated
  14. D

    Problem closing a form

    Thanks - - That solved it. :)
  15. D

    Problem closing a form

    ETIME = DateDiff("n", [TIME_OPEN], Now()) If ETIME > 15 And ETIME < 30 Then DoCmd.OpenForm "KYLE" Else If ETIME > 29 Then DoCmd.Close DoCmd.Close "KYLE" DoCmd.OpenQuery "qryDeleteInfo" End If End If End Sub What I'm trying to do is, if ETIME is greater than 15 minutes but less that 30...
Back
Top Bottom