I have a form with 3 combo boxes that have several options. On that same form, I have a textbox that I would like to autofill with the selected options from the combo boxes.
For example:
cbo1Options: 1;2;3
cbo2Options: a;b;c
cbo3Options: A;B;C
Let's say the user selects 2, c, and A from the 3 combo boxes. I would like the textbox on that form to display: "2 c A".
I tried doing a query, but that just autofilled the textbox with ALL the options available in the combo boxes, not the selected ones.
Any help would be greatly appreciated!
Thanks!