When a user clicks the submit button all information from the form is transferred to tab in my workbook.
The part of this I am having trouble with is the count of selected items from a 3 listboxes. Each listbox needs a separate count going to a different cell.
Start of the transfer:
The last bit of code needs to tranfere the below 3 Listboxes:
Cells they need to feed to on the same tab:
The part of this I am having trouble with is the count of selected items from a 3 listboxes. Each listbox needs a separate count going to a different cell.
Start of the transfer:
Code:
Private Sub CommandButtonSubmitScope_Click()
MultiPage1.Value = 0
Sheets("Ticket Product Info").Activate
[INDENT]Range("B3").Value = TextBoxProductName[/INDENT]
Range("B5").Value = ComboBoxAffiliation
Range("B6").Value = ComboBoxLabel
Range("B7").Value = ComboBoxBrand
Range("B8").Value = ComboBoxProductType
Range("B9").Value = ComboBoxProductType2
[INDENT]'etc....[/INDENT]
The last bit of code needs to tranfere the below 3 Listboxes:
- ListBoxAffiliates
- ListBoxBOLT
- ListBoxDTC
Cells they need to feed to on the same tab:
- K4
- K5
- K7