Search results

  1. bob fitz

    Solved Query Error

    Glad you have it working :D
  2. 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.
  3. 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.
  4. bob fitz

    Solved Query Error

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

    Solved Query Error

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

    Solved Query Error

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

    Solved Total Sum? on a Query from Other Queries

    Glad you have a solution. Always pleased to help if I can :)
  9. 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)
  10. bob fitz

    Password mask in InputBox massage

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

    report not showing filtered data

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

    report not showing filtered data

    Try: DoCmd.OpenReport "myreport", acViewReport, "", Me.Filter, acNormal
  13. 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
  14. bob fitz

    * Filter does not work in numbers field

    Can you show us the code that produces the error?
  15. bob fitz

    different colors when there is filter

    Take a look at Conditional Formatting of Controls(textboxes etc) You will be able to set the backround colour of controls dependent on the value of "Status"
  16. bob fitz

    Storing and retrieving data for months of the year into one field

    IMHO it would be better to save the month numbers in a separate table.
  17. bob fitz

    Sorting a continuous form based on a field

    If the values returned by the UDF are G2, -5, -7 then how would you like them ordered when the label is clicked. -7 is smaller than -5, so -5 would be above -7, but where would you want the text value (G2) to be. Below -7 or above -5
  18. bob fitz

    Sorting a continuous form based on a field

    How do you the column if the values returned are G2, -5,-7
  19. bob fitz

    Sorting a continuous form based on a field

    Can you post a copy of your db which has a string value being returned in the UDF
  20. bob fitz

    Sorting a continuous form based on a field

    Take a look at the attached db. I have changed your UDF to return an integer rather than a variant which I believe solved the problem. I have also changed the SQL statement used in the forms Recordsource so it no longer uses your UDF but does the calculation within the query instead.
Back
Top Bottom