Search results

  1. bob fitz

    Solved Total Sum? on a Query from Other Queries

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

    Password mask in InputBox massage

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

    report not showing filtered data

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

    report not showing filtered data

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

    * Filter does not work in numbers field

    Can you show us the code that produces the error?
  8. 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"
  9. 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.
  10. 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
  11. bob fitz

    Sorting a continuous form based on a field

    How do you the column if the values returned are G2, -5,-7
  12. 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
  13. 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.
  14. bob fitz

    Sorting a continuous form based on a field

    I can't replicate the problem. Can you post a copy of the db
  15. bob fitz

    Relational Combo Boxes not Working

    You need to add the following line to the GotFocus event of the Product combo: Me.ActiveControl.Requery
  16. bob fitz

    Relational Combo Boxes not Working

    Combo Products needs to be bound to the ProductID field. The Row Source property needs to be changed to something like: SELECT tblProducts.ProductID, tblProducts.ProductName FROM tblCategories INNER JOIN tblProducts ON tblCategories.CategoryID = tblProducts.CategoryID WHERE...
  17. bob fitz

    Relational Combo Boxes not Working

    The Row Source property of the Product combo should be: SELECT tblProducts.ProductName FROM tblCategories INNER JOIN tblProducts ON tblCategories.CategoryID = tblProducts.CategoryID WHERE...
  18. bob fitz

    Solved Column widths not retaining for datasheet form

    I'm using A2019 which seems to work without this problem.
  19. bob fitz

    Solved Column widths not retaining for datasheet form

    What version of Access are you using?
  20. bob fitz

    Introduction

    Welcome to the forum John :)
Back
Top Bottom