Make a dropdown that contains the values that you want to pass. If you are using Textboxes, name the textbox and then attach whatever values you want the user to be able to choose from. In VBA it will look like this:
With TextBox1
.AddItem "Whatever you want to add"
.AddItem "And whatever you want to add here"
End With
With TextBox2
.AddItem "option for this dropdown"
.AddItem "2nd option etc...."
End With
Then create another textbox and name it something, say "Input" and write the code like this:
Input = Me.TextBox1.Value & " " & Me.TextBox2.Value
Hope this helped.
Nate
Bookmarks