This question directly relates to the same data in this Post.
Scenario:
I am trying to create a form that allows me to filter a dataset at a very granular level. To do this I need to be able to select records and their child records individually, with the number of records being a little over 250.
Possible Solution:
Right now I am toying with the idea of creating an unbound combo box that will select a family of records (on average 20 or so) and display them to be selected as checkboxes. So in theory you would select a family and the checkboxes would be dynamically filled to allow selection, then when you change the family it would write the selection to memory, building out the filter.
Pseudo Code:
User selects Family
User selects checkboxes
On submit, compile all checkbox selections and parse for filter.
I know this method is time consuming and I will need to put in quite a bit of error handling.
So. I am curious if anyone else has other ideas. Thanks!
Scenario:
I am trying to create a form that allows me to filter a dataset at a very granular level. To do this I need to be able to select records and their child records individually, with the number of records being a little over 250.
Possible Solution:
Right now I am toying with the idea of creating an unbound combo box that will select a family of records (on average 20 or so) and display them to be selected as checkboxes. So in theory you would select a family and the checkboxes would be dynamically filled to allow selection, then when you change the family it would write the selection to memory, building out the filter.
Pseudo Code:
User selects Family
Code:
{VBA} SELECT each control in family from tblControls and iterate to a checkbox. Check current memory to see if any are already selected Fill previously selected
Code:
{VBA} write checkbox selection to memory after submit or new family is selected
I know this method is time consuming and I will need to put in quite a bit of error handling.
So. I am curious if anyone else has other ideas. Thanks!
Comment