Recent content by Zippersabrat

  1. Z

    Query Exclusion List

    Hi all! I have an Access Database that I am using to track the difference in product codes between two different external databases. I export the codes from both and import to their own table. I then run two queries, one to show what is missing from one and another to show what is missing...
  2. Z

    Filter not clearing on subform

    I got it figured out! Thank you for your help!
  3. Z

    Filter not clearing on subform

    That did it! Thank you so much!
  4. Z

    Filter not clearing on subform

    Hi, Sorry for the confusion. The first code is below. This code works if I manually change the [Product Product Type] field but doesn't work when you navigate through the records and it changes automatically. I do not want the user to change the [Product Product Type] field. It is actually...
  5. Z

    Filter not clearing on subform

    I would like to be able to remove the filter to show ALL records. So any suggestions on how to get the first code set to work without using the linked master/child fields?
  6. Z

    Filter not clearing on subform

    Yes. I could not get the first code to work without that.
  7. Z

    Filter not clearing on subform

    Hello all! I have a filter on a subform based on a value from the main form. Code for this filter is: Private Sub Product_Type_AfterUpdate() Me.Central_Structure_Product_List.Requery Dim strType As String Dim strFilter As String If Not IsNull(Me.[Product Product Type]) Then strType = "='"...
  8. Z

    Adding Additional Filter Criteria to Existing Code

    Yes but I swear it threw an error. I must have had an extra quotation mark or a missing one somewhere. Thank you! :)
  9. Z

    Adding Additional Filter Criteria to Existing Code

    Hi All, I am trying to add an additional filter criteria to the below. This is a selection drop-down to filter on [Product Product Type]. I want it to also filter the main form to show only those records where [ActionCmb] is null. I have gone round and round and just cannot get it to work...
  10. Z

    Filter on form not working as intended to filter subform

    This helped a ton! Thank you!
  11. Z

    Filter on form not working as intended to filter subform

    I am using the below code to filter a subform based on the main form field of [Product Product Type]. The subform will filter based on the field [Product Type]. If I manually change the dropdown on the main form it will filter the subform. I do not want the user to have to do this as they...
  12. Z

    2185 Error on Subform Search

    :confused: Hello everyone! I have the below code on a subform. The search works fine IF the item is on the list. However, if the item is not on the list, it gives a 2185 error. WHY?! And how do I fix it? When I debug it highlights the Me.Searchbox.SelStart = Len(strSearch) line. TIA...
  13. Z

    Filter for Subform not working as intended

    I am a believer of Debug now! Thanks!
  14. Z

    Filter for Subform not working as intended

    Thank you! It didn't work but it did lead me down the right path. Turned out a different set of codes on the On_Current was doing all the work. Once I blocked that and moved this code to On_Current it worked. I did use your tricks to clean it up though. Thanks again!
  15. Z

    Filter for Subform not working as intended

    I am going nuts with this. No errors and it filters perfectly on the Product Group but it will not filter on Product Type. Help! :banghead: The goal is to filter a subform [Central Structure Product List] based on given values for Product Group and Product Type. I have another code on both...
Top Bottom