If I have the following data source (either table or query) with 3 fields (id, type, colour)
ID-----Type-------Colour
1-------A----------Red
1-------A----------Blue
1-------A----------Green
2-------B----------Red
2-------B----------Yellow
2-------B----------Purple
2-------B----------Green
I need to create a Datasheet Form to list the above data with distinct ID (so in this case, it will only show 2 records). However, for the colour field, I need a dropdown combo list to give the relevant options. So the datasheet form will look like this:
ID-----Type-------Colour
1-------A----------(Combo list: Red, Blue, Green)
2-------B----------(Combo list: Red, Yellow, Purple, Green)
I just can't work out how to filter the combo list record to only show the ones relevant for the type.
ID-----Type-------Colour
1-------A----------Red
1-------A----------Blue
1-------A----------Green
2-------B----------Red
2-------B----------Yellow
2-------B----------Purple
2-------B----------Green
I need to create a Datasheet Form to list the above data with distinct ID (so in this case, it will only show 2 records). However, for the colour field, I need a dropdown combo list to give the relevant options. So the datasheet form will look like this:
ID-----Type-------Colour
1-------A----------(Combo list: Red, Blue, Green)
2-------B----------(Combo list: Red, Yellow, Purple, Green)
I just can't work out how to filter the combo list record to only show the ones relevant for the type.