How to autofill text area base on combo box value on MS.Access

94 views Asked by At

I had problem when trying make form using MS.Access and i don't know how to make text area value same as combobox value like this picture:

enter image description here

1

There are 1 answers

0
Gustav On

You can use:

Me!TextItem.Value = Me!ComboItem.Value

Of course, use the actual names of your controls.