Search results

  1. bob fitz

    CALL UP CONTROL ON SUBFORM

    Perhaps you can post a copy of the db
  2. 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.
  3. bob fitz

    DateDiff Query without weekends

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

    DateDiff Query without weekends

    I had no GroupBy clause either
  5. bob fitz

    DateDiff Query without weekends

    Can you post a copy o the db
  6. 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
  7. 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...
  8. bob fitz

    Solved Archive old records

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

    What's your best/worst joke?

    What's that all about?
  10. 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/
  11. 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:
  12. 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
  13. bob fitz

    Solved Query Error

    Glad you have it working :D
  14. 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.
  15. 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.
  16. bob fitz

    Solved Query Error

    Can you post a copy of the db with just a couple of fictitious records.
  17. bob fitz

    Solved Query Error

    Then perhaps: Payer: IIF(IsNull(BillingLastname), Firstname & " " & Lastname & " (Student)", BillingFirstname & " " & BillingLastname & " (Billing)")
  18. bob fitz

    Solved Query Error

    Try: Payer: IIF(IsNull(BillingLastname), Firstname & " " & Lastname & ", '" & (Student) & "'", BillingFirstname & " " & BillingLastname & ", '" & (Billing) & "'")
  19. bob fitz

    Solved Instead of Ms access in msgbox heading I should be able to write something else.

    Try: MsgBox ("Wrong Password.", vbInformation + vbOkOnly, "Operation Cancelled")
  20. bob fitz

    Solved Total Sum? on a Query from Other Queries

    Glad you have a solution. Always pleased to help if I can :)
Back
Top Bottom