Search results

  1. R

    Copy value from field in subform to field in mainform during data entry

    Define not working. All names with spaces have to be inside [] to work. Forms!Form4a!QuarterOrPealID = QuarterOrPealID Is QuarterOrPealID field the same field from the same table? Dale
  2. R

    Copy value from field in subform to field in mainform during data entry

    Forms!Form4a!QuarterOrPealID = ActualNameHere. Dale
  3. R

    query giving error

    pre-eugin, Thank you for correcting my post. I am still trying to learn queries. Thanks again. Dale PS, Post deleted. Miss leading information.
  4. R

    Report - print calculated field off of form to a report

    Do the calculations in a query or redo the calculations on the report. I would first try to do the calculations in a query. Dale
  5. R

    Subform Calculations based on Parentform data

    First, Try the OnLoad event. On the Afterupdate event of a changed text box add Me.Recalc and/or subformname.recalc. Dale
  6. R

    Or Operator giving problem, in VBA ACCESS

    Please post the entire code. Dale
  7. R

    Copy value from field in subform to field in mainform during data entry

    In the subform, in the text box you want to insert/copy from, in the after update event try, Forms!YourMainFormName!MainFormTextBoxName = SubformTextbox Forms!YourMainFormName.Refresh Dale
  8. R

    Populate Form fields based on selection in another field

    try, Me.Requery in the after update event of the customer and the company text box. Dale
  9. R

    Delete Row from Table button?

    Why not use the delete macro that goes with the Delete record button when you made the button. Dale
  10. R

    HELP - Nested IIF Statement

    Try this at the top of your function. Function getTatStatus(PO_date, ReqApp_date, [Working Days]) Dim PO_Date As Date Dim RegApp_Date As Date Dim WorkDays As Interger Dim TAT As String Dale What variables are you passing to this Function?
  11. R

    HELP - Nested IIF Statement

    IIf ([PO Creation Date] < [Req Approval Date]), "", IIf([Working Days] < 0, "Pre-Req. Approval", IIf([Working Days] >= 0 And [Working Days] <= 3, "0 to 3 Days", IIf([Working Days] >= 4 And [Working Days] <= 6, "4 to 6 Days", IIf([Working Days] >= 7 And [Working Days] <= 10, "7 to 10 Days"...
  12. R

    HELP - Nested IIF Statement

    Show your entire code please. Dale
  13. R

    ListBox row source returning multiple 'blanks' (Access2007)

    SELECT tblMyTable.MyField FROM tblMyTable WHERE What youWant = WhatYou WantTo Show.If you use a WHERE clause you are filtering the data by what you want/do not want, to to be returned. Example: WHERE MyID = tblSomeThing_ID You don't need DISTINCT because there should not be duplicates. Dale
  14. R

    Query that returns no-matching records.

    Try Querying for Null in the field Fulfilled Course or whatever field that shows the task complete. Dale
  15. R

    Run Macro IF

    Put the button action inside the if statement. If the test is not met the the action will not run. Dale
  16. R

    Number formatting

    Mihail, Setting the decimal to auto will give you 2 decimal places, will it not. Dale
  17. R

    Number formatting

    Try setting your format to Standard and your decimal to 4 in your table. Dale
  18. R

    ListBox row source returning multiple 'blanks' (Access2007)

    Try filtering with a WHERE clause and remove the DISTINCT. Dale
  19. R

    One to Many Query - Most Recent Child Record

    I think you could take the query you just make and use it plus the table. Give that a try. Nothing ventured, nothing gained. Don't change the join type, leave it as access sets it as an inner join. Dale
  20. R

    One to Many Query - Most Recent Child Record

    It is grouping on the other fields also. Put them back in 1 by 1 and you will see what I mean. I don't know how to explain it without writing a book. The query will group on each field in the query. There is no way to tell it to return the field and not group on it. Dale
Back
Top Bottom