Id like to either have a textbox where the user can type something and search in the data of an listbox.
Or it would work if I instead had a combobox where the user could select a theme and show the data connected to that theme in the listbox.
---
I have two tables
One called Profile_Table
One called Log_Table
I then have a form called Profile_Form that is based on a query Profile_Query (profile_query is a combination of the two tables)
In the form profile_form i have a listbox called NamePicker_Listbox
This listbox have 3 columns picking data from the profile_table
Now id like to add a textbox somewhere so the user using the form can type something and search in the columns of the listbox and filter out the rest of the data. For example if the user types "Jo", the listbox display all data containing "jo" somewhere in any of the columns of the listbox.
A second option if the search feature does not work
It would be great if i could filter the listbox... for example the profile_table contain the column "workplace location"
the user could select one of the workplace locations in a combobox and get all the records that have that workplace location.
In the best of worlds, i want both
But since im quite new to access, i have no clue how to start doing this.
I have uploaded my project here, so please have a look if you want to help!