Search results

  1. K

    ms access filter subform based on multiple checkboxes

    What will be the code I will put at Select All and De-Select All buttons?
  2. K

    ms access filter subform based on multiple checkboxes

    Great. One more thing. Can you do if all is checked show all records(Select All), if none are checked dont display anything (De-Select All).
  3. K

    ms access filter subform based on multiple checkboxes

    The subform table is not filtering right. The checkboxes are only filtering one at a time.
  4. K

    ms access filter subform based on multiple checkboxes

    Attached is my sample DB. The checkboxes are in frm_Dependent_Search in Search Tab.
  5. K

    ms access filter subform based on multiple checkboxes

    the MsgBox is not prompting the message
  6. K

    ms access filter subform based on multiple checkboxes

    How to post sample DB in here?
  7. K

    ms access filter subform based on multiple checkboxes

    The immediate window is empty
  8. K

    ms access filter subform based on multiple checkboxes

    There are 5 checkboxes that filter the 1st column CRN and there is a subform containing a table the will be filtered depending on the checkboxes ticked or unticked.
  9. K

    ms access filter subform based on multiple checkboxes

    What do you mean DB? Sorry I cannot attach the DB here.
  10. K

    ms access filter subform based on multiple checkboxes

    Here's the code strive taught me. Private Sub chkIndigent_AfterUpdate() Call SetMyFormFilter End Sub Private Sub chkPWD_AfterUpdate() Call SetMyFormFilter End Sub Private Sub chkRegular_AfterUpdate() Call SetMyFormFilter End Sub Private Sub chkSenior_AfterUpdate() Call SetMyFormFilter End...
  11. K

    ms access filter subform based on multiple checkboxes

    What I must do now? pls help.
  12. K

    ms access filter subform based on multiple checkboxes

    one thing. i did not put the option explicit because its causing error when compiling. Is that ok?
  13. K

    ms access filter subform based on multiple checkboxes

    ok strive. thanks. who can help me?
  14. K

    ms access filter subform based on multiple checkboxes

    there is only one field which is CRN. Where do i place the "Debug.Print vFilter "? I dont know how to code the query. can you make an example please and where to put it. please help im completely lost and new to access. please be patient with me.
  15. K

    ms access filter subform based on multiple checkboxes

    yes strive I've already done that with all checkboxes
  16. K

    ms access filter subform based on multiple checkboxes

    hi strive. nothing is happening when i ticked and unticked the checkboxes... is this have to do with line " .Filter = vFilter .FilterOn = True "?
  17. K

    ms access filter subform based on multiple checkboxes

    also the line is automatically placed after the option explicit statement
  18. K

    ms access filter subform based on multiple checkboxes

    thanks strive. also if i put the "Option Explicit ' require variable declaration" on top of the code its saying " only comments may appear after End Sub, End Function, or End Property.
  19. K

    ms access filter subform based on multiple checkboxes

    Hi MajP. Can you tell me what is wrong with strive's code the compiler is saying syntax error in lines vFilter = (vFilter + AND ")
  20. K

    ms access filter subform based on multiple checkboxes

    hi strive, the compiler is returning syntax error in line vFilter = (vFilter + AND ")
Back
Top Bottom