Search results

  1. bob fitz

    Limit Datasheet to ONE entry

    I believe it can be done by setting the AllowAdditions property of the subform using the events that I spoke of in post#7 and also in the main forms on current event. See attached
  2. bob fitz

    Limit Datasheet to ONE entry

    Have you tried using the sub form controls on enter event and the after update event to test or an entry
  3. bob fitz

    Limit Datasheet to ONE entry

    Are you sure?
  4. bob fitz

    Solved Archive old records

    Not sure what you want a sample of but MS has a Student template file. Post a copy of your db if you want an example of how you might flag a record.
  5. bob fitz

    CALL UP CONTROL ON SUBFORM

    Perhaps you can post a copy of the db
  6. bob fitz

    DateDiff Query without weekends

    With a better understanding of the requirement I also tried the function way, as suggested by Gasman. My version of it is attached.
  7. bob fitz

    DateDiff Query without weekends

    So, I'll ask again. Can you post a copy of the db.
  8. bob fitz

    DateDiff Query without weekends

    I had no GroupBy clause either
  9. bob fitz

    DateDiff Query without weekends

    Can you post a copy o the db
  10. bob fitz

    Solved Problem with search and filter

    I notice that you are using "Lookups" in your tables which can lead to problems. See: http://access.mvps.org/access/lookupfields.htm
  11. bob fitz

    DateDiff Query without weekends

    Perhaps you could use a query to calculate the count of weekdays. Something like: SELECT Count(YourTableName.FieldNameToCount) AS NumOfWDays FROM YourTableName WHERE (((YourTableName.YourDateFieldName) Between [Start Date] And Date()) AND ((Weekday([YourDateFieldName]))<>1 And...
  12. bob fitz

    Solved Archive old records

    You could add a "LeavingDate" date field to one of your tables.
  13. bob fitz

    What's your best/worst joke?

    What's that all about?
  14. bob fitz

    updating tables

    Cross-Posted: https://www.accessforums.net/showthread.php?t=88649 Please read: https://excelguru.ca/a-message-to-forum-cross-posters/
  15. bob fitz

    I want a solution to the problem of creating relationships between tables

    Search YouTube for videos on: "access table relationships". There are lots of them. Here's one I found:
  16. bob fitz

    I want a solution to the problem of creating relationships between tables

    I would advise against the use of Lookup fields in tables. See: http://access.mvps.org/access/lookupfields.htm
  17. bob fitz

    Solved Query Error

    Glad you have it working :D
  18. bob fitz

    Solved Query Error

    Not sure that "MUST" is quite right. I thought that expressions without them would still work if the field name had NO spaces in it. I would agree that they are advisable though.
  19. bob fitz

    Solved Query Error

    If you post a copy of the db one of us may be able to find the problem. The last code that I posted worked when I tested it.
  20. bob fitz

    Solved Query Error

    Can you post a copy of the db with just a couple of fictitious records.
Back
Top Bottom