Search results

  1. N

    Information Message for Duplicate field

    Hi MarkK, I am trying to add the DCount code to locate a work order that is currently in the table and respond with a message if found. I am using the following code, but I receive an Syntax error. What am I missing? Code: If DCount("*", "tbl_WorkOrder", "WorkOrd_Number = " & Me.Cbowonum) >...
  2. N

    Information Message for Duplicate field

    Hi MarkK, I need for the function to perform a search to see if there are a work order number in the table before displaying the message. Where can I find the MsgBox() function?
  3. N

    Information Message for Duplicate field

    Hello, How can I create an alert message to tell the user that there are an existing work order number in the table? I don't want it to restrict the entry, just inform the user that there is an existing work order number, do they want to continue. Btw, the code will be attached to a combo...
  4. N

    Error on 2nd Combo when Adding a Dup Rec

    Hi, I need help on this error message I am getting when I click on my Duplicate Record button (created through the wizard). I have two combo boxes on the main form that populates data when the user makes a selection from the combo box. First combo box populates project data and the second...
  5. N

    Appending data to Existing Excel Data

    Hey, thanks DenMiller! I apprecaite your time and assistance.
  6. N

    Output Time Problem

    Hi, I desperately need help on a time issue. I have an Access query that exports data to an Excel spreadsheet (so far so good). Unfortunately, the data is exported incorrectly. Here is the problem… I need the data to export for shifts “B” and “C” between particular times. Example: Shift B...
  7. N

    REALLY Need Help on Appending data to Excel data

    Hello, I am exporting data from Access (2000) to Excel using a criteria form. I would like to append data to the Excel sheet without clearing the current data. How can I perform this function? Here is part of my code: <BEGIN CODE> Set myXL = CreateObject("Excel.Application") Set myWB =...
  8. N

    Remove the Zero number in blank fields

    Thanks to the both of you for responding to my problem. Holger, your formula worked. I appreciate your time. :D
  9. N

    Remove the Zero number in blank fields

    Hello, Can someone tell me what I am doing wrong with this formula? =IF(J1487="","",(K1487-J1487())) I am trying to remove the "0" number in a blank cell. I am calculating the number of days a workorder was open. I subtract the close date from the open date (K1487-J1487) which works fine...
  10. N

    Appending data to Existing Excel Data

    Hello All, I am exporting data from Access (2000) to Excel using a criteria form. I would like to append data to the Excel sheet without clearing the current data. How can I perform this function? Here is part of my code: <BEGIN CODE> Set myXL = CreateObject("Excel.Application") Set myWB =...
Back
Top Bottom