Recent content by verdes

  1. V

    Need help with VBA Execute Statement

    Thank you everyone! I needed that info on the global variable from MarkK and I did make a macro and called it from the vba that The Doc Man suggested. Everything is working fine now. Thank you, so much!
  2. V

    Need help with VBA Execute Statement

    I am using Access 2016. I used the Query Wizard to create an append query that works correctly. I saved the query with the name pendingAdd_qry. In an Event Procedure on one of my forms, I want to run that query, pendingAdd_qry. My code gets an error on the Execute statement and I just can't...
  3. V

    Help building a search string in an event procedure

    Thank you, so much!That helped me see clearly. Everything is working fine. I appreciate your help.
  4. V

    Help building a search string in an event procedure

    I am using MS Access 2016 I have a database that includes 2 tables: blank_tbl blankID blankYear (number) blankDistrict (number - join on districtID) blankInfo1 blankInfo2 blankInfo3 blankFinanceamt blankTrusteeamt blankClose (yes/no) district_tbl districtID districtName districtDioceseNumber...
  5. V

    VBA Subform Requery Issue

    Fixed! Fixed! Fixed! I had to add Me.Refresh at the top of the button code. The requery still wasn't working when I was creating a new main record and inserting new subform records. Please let me know if you see a problem in my code for looping and inserting. Thanks.
  6. V

    VBA Subform Requery Issue

    Sorry. I just fixed my requery syntax to Me.subfrm_Allocation.Form.Requery. It appears to requery now. I'll do some more testing. Hope it's fixed. Thanks
  7. V

    VBA Subform Requery Issue

    I'm using access 2007. I have a mainform and a subform linked properly. I have a button on my mainform that will insert records to the underlying table of my subform when clicked. The records are inserted into the table correctly, but they won't display in the subform until I move off the...
  8. V

    Left Join problem

    Yes. That works. Thank you so much.
  9. V

    Left Join problem

    I can't build it in there. It doesn't do the joins right at all. It builds the SQL with "and". That's why I posted in the forum. I'll keep looking.
  10. V

    Left Join problem

    The auxiliary_tbl contains information about auxilary groups in our organization. Each group has officers: a chairperson, secretary, and treasurer. I want to make a query that lists all the info in the auxiliary table along with the name of the chairperson, secretary, and treasurer. The...
  11. V

    Left Join problem

    I am using Access 2007. I have a table called auxiliary_tbl. It contains 3 foreign keys (chair, secretary, treasurer) to a table called individual_tbl. I want to make a query on the auxiliary_tbl that includes the corresponding names of the 3 foreign keys in the individual_tbl. Right now I...
  12. V

    Subform Total on Main form error

    I deleted the description fields and added them back in with the text box contol wizard (?) and it seems to be working fine. Thanks for your help.
  13. V

    Subform Total on Main form error

    I saved the database in 2000-2003 format. It seems as if the field called description on the subforms is effecting the calculated totals on the main form (which seems illogical because the calculated values are correct). If I enter a numeric value in the description field (Auxiliary...
  14. V

    Subform Total on Main form error

    I did have an onload event. I removed the event (deleted the rows in the event, then erased the "Embedded Macro" from the onload event. Now, i am able to add numerical values to the description field and it works ok. But as soon as I add a non-numeric value - I get the error. I can...
  15. V

    Subform Total on Main form error

    I've attached my database. The form titled frmEOV displays the correct totals on the main form. If you add data in the description fields on the records listed on either "donation" subform you get an error in the totals on the main form. Sometimes I get the error as I'm tryping. Sometimes...
Back
Top Bottom