Nelviticus
Programmer
I'm using Access 2007. I have a couple of fields in my main table where 'allow multiple values' is set to 'yes'. These fields look up values in other tables and bind to the 'ID' column while displaying the value column.
For example, I have a field in my main table called 'Areas' which allows the user to pick any number of values from my Areas table.
If I create a form based on the main table these multi-value fields are displayed as list boxes. They list all the values in the Areas table with check-boxes next to each one, and the check-box is either ticked or un-ticked depending on whether the user picked that value.
Is there a way to just display the 'picked' values rather than the entire list? If I change the control to a text box it does this but it displays the IDs rather than the values, as it's bound to the ID column.
At the moment it looks like this:
If I change it to a text box it looks like this:
But I want it to look something like this:
Is this possible?
Thanks
Nelviticus
For example, I have a field in my main table called 'Areas' which allows the user to pick any number of values from my Areas table.
If I create a form based on the main table these multi-value fields are displayed as list boxes. They list all the values in the Areas table with check-boxes next to each one, and the check-box is either ticked or un-ticked depending on whether the user picked that value.
Is there a way to just display the 'picked' values rather than the entire list? If I change the control to a text box it does this but it displays the IDs rather than the values, as it's bound to the ID column.
At the moment it looks like this:
Code:
Areas
-----
x North
South
East
x West
Code:
Areas
-----
0,3
Code:
Areas
-----
North
West
Thanks
Nelviticus