Hey all.
I am probably going about this the completely wrong way, but I set a form up in a specific manner, and now I am trying to figure out a way to make this work. I will try to explain the process as clearly as I can. Maybe it won't seem so complicated once I type it out.
I have a UserForm that contains a ListBox (ListBox1). Here is the code for this box:
With ListBox1
.AddItem "Option 1"
.AddItem "Option 2"
.AddItem "Option 3"
.AddItem "Option 4"
End With
I have a TextBox (TextBox1) that shows a date.
Is there a way to have the text in TextBox1 appear next to select items in the ListBox. I realize that the code I am about to show you doesn't work, but perhaps it will illustrate my point:
With ListBox1
.AddItem "Option 1" & TextBox1.Text
.AddItem "Option 2"
.AddItem "Option 3" & TextBox1.Text
.AddItem "Option 4"
End With
Any suggestions/ solutions would be greatly appreciated.
Thanks!
Bookmarks