Search results

  1. 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
  2. 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...
  3. bob fitz

    Solved Archive old records

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

    What's your best/worst joke?

    What's that all about?
  5. 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/
  6. 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:
  7. 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
  8. bob fitz

    Solved Query Error

    Glad you have it working :D
  9. 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.
  10. 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.
  11. bob fitz

    Solved Query Error

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

    Solved Query Error

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

    Solved Query Error

    Try: Payer: IIF(IsNull(BillingLastname), Firstname & " " & Lastname & ", '" & (Student) & "'", BillingFirstname & " " & BillingLastname & ", '" & (Billing) & "'")
  14. 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")
  15. bob fitz

    Solved Total Sum? on a Query from Other Queries

    Glad you have a solution. Always pleased to help if I can :)
  16. bob fitz

    Solved Total Sum? on a Query from Other Queries

    Perhaps: TotalQty: Nz([Day1Qty],0)+Nz([Day2Qty],0)+Nz([Day3Qty],0)+Nz([Day4Qty],0)+Nz([Day5Qty],0)+Nz([Day6Qty],0)+Nz([Day7Qty],0)
  17. bob fitz

    Password mask in InputBox massage

    Take a look at the "similar threads" section below
  18. bob fitz

    report not showing filtered data

    What is the value of Me.Filter when the code runs
  19. bob fitz

    report not showing filtered data

    Try: DoCmd.OpenReport "myreport", acViewReport, "", Me.Filter, acNormal
  20. bob fitz

    Solved Null Value Verification

    Perhaps you could set the sub form as Not enabled. Then put your validation code in the Main forms Before Update event and in the Main forms On Current event
Back
Top Bottom