Search results

  1. D

    Solved Subform adding blank record

    Yes
  2. D

    Solved Subform adding blank record

    It is a datasheet form. I want additions as it is for entering data. Is there a way to keep the line from loading empty?
  3. D

    Solved Setting a field to null on Dirty

    Sorry, my error. I'm still trying to figure out the forum. I marked it as solved.
  4. D

    Solved Subform adding blank record

    I am assuming that is where the blank rows are coming from. I'll check again tomorrow as I had a couple other errors to work through.
  5. D

    Solved Subform adding blank record

    I have a subform that I am entering records related to the ClientID on the main form. It creates an extra blank entry when i enter the line prior. How do i stop it from doing that. Image attached.
  6. D

    Solved Setting a field to null on Dirty

    As i said at 11:54, that fixed my error.
  7. D

    Solved Setting a field to null on Dirty

    The field is only a number field that i enter overtime hours for the employee to show me how much is owed for overtime. I enter the hours in the field and have another field that tells me how much overtime to pay. It does not fill another field with information. Next payroll, the employee may...
  8. D

    Solved Setting a field to null on Dirty

    It's a field used field calculation only
  9. D

    Solved Setting a field to null on Dirty

    That worked. Thank you. You guys are amazing when I can't work through stupid errors.
  10. D

    Solved Setting a field to null on Dirty

    I'm trying to change a Text Box "OT Hours" to null when i go to a new or next record. I have tried this on the form and field Expression and it's not working. Private Sub Form_Dirty(Cancel As Integer) If Me.OT_Hours Then Me.Undo End Sub Private Sub OT_Hours_Dirty(Cancel As Integer) If...
  11. D

    Solved syntax error (comma) in query expression

    It is numeric. It worked. Thank you.
  12. D

    Solved syntax error (comma) in query expression

    I've also tried this and the results are "error". Federal tax: IIf([Basic Salary]>"17100.00",[Recommended ded],0)
  13. D

    Solved syntax error (comma) in query expression

    I'm trying to build an zoom expression in a query where if Basic Salary is >17100 to return an already calculated result, else 0. This is my expression: Federal tax: IIf([Basic Salary]>"17100.00",([tblEmployees]![Total of pay check]*[tblpayrolltaxes]![Percent of Withholding],0)) I'm getting a...
  14. D

    Solved Invalid Syntax

    I'm trying to build a calculated field in a table and i'm getting the error "The expression you entered contains invalid syntax". This is my expression: IIf([Marital Status]="Married", [Basic Salary]<17100,0) IIf([Marital Status]="Married", [Basic Salary]>=17101,12) IIf([Marital...
  15. D

    Solved Form jumping around in records when i field is typed

    Not what I wanted to do, but I understand. I will make the changes.
  16. D

    Solved Form jumping around in records when i field is typed

    As i said, i want it by Check number not client #
  17. D

    Solved Form jumping around in records when i field is typed

    Except that i only want the information for a check and not a client.
  18. D

    Solved Form jumping around in records when i field is typed

    As i said, this is a database I inherited and I don't want to start back from scratch to redo it. I'm trying to work with what is there. Do you recommend i that the special characters out? It would take a while to follow the paths to make sure it go everything.
  19. D

    Solved Form jumping around in records when i field is typed

    open the Transactions Form View. When i started typing in a check number, Information would jump around in the subform. For some strange reason, now i can't recreate it. I want to give you some information about the database. I did not create this database. It was created by a Professor in the...
Back
Top Bottom