Recent content by aoswald

  1. A

    I don't understand this error message

    2007 I right clicked on the field and selected Equals(the value in the field) I wanted all the records with that value in the field I get the same error no matter which field I try to sort on
  2. A

    I don't understand this error message

    "The method you tried to invoke on an object failed" *You may have specified too many or too few arguments for a property or method of an object. Check the component's documentation for information on the properties and methods it makes available for Automation operations *There may not be...
  3. A

    query more than one table

    yes there is
  4. A

    query more than one table

    OK I already know the answer - yes I can query more than one table because I have done it before. But now as soon as I add the second table, I get no results in the query. I know there should be some results. what am I missing? thanks
  5. A

    Error Message???

    The method you tried to invoke on an object failed. *You may have specified too many or too few arguemtns for a property or method or an object. Check the component's documentation for information o the properties and methods it makes availalbe fo Automation operations *There may not be enough...
  6. A

    Automatic field input

    Nevermind - I figured out how to copy a record and paste it into a new one.
  7. A

    Automatic field input

    I need to keep track of our contact with Agents. I want to make a new record everytime I contact the agent but I don't want to have to fill out all the fields everytime because once I make the initial contact, most of the information will be the same. Is there a way to duplicate a record and...
  8. A

    return a date range

    allan57 do I just put that formula in the criteria field if yes - it didn't work
  9. A

    return a date range

    What forumla do I use to return entries one week on either side of today's date: thanks
  10. A

    report based on date span

    sorry - I mean ONE week on either side of today
  11. A

    report based on date span

    what formula do I put in a query to get entries on week on either side of todays date? thanks
  12. A

    Help with sum formula in query

    Got it - works great - thanks
  13. A

    Help with sum formula in query

    I understand the =>16 but I don't know how to group on associates
  14. A

    Help with sum formula in query

    I have a table the tracks training hours for associates. Training credits are earned in 1,2,and 3 hour blocks I want to know the names of associates that have completed at least 16 hours. How do I do that? thanks
  15. A

    Query question

    This is what I have now: SELECT Contacts.EmployeeName AS Expr1, Nz(Leave.hours,0) AS Expr2, Contacts.LastName, Leave.[Pay Period] FROM Contacts LEFT JOIN Leave ON Contacts.File_number = Leave.File_Number WHERE (((Leave.[Pay Period]) Like "11/16*")); It seems to work until I put in the 11/16...
Back
Top Bottom