1) I have a column of data which fills a multiselect listbox in a userform. Values are the days of the week "Monday" - "Sunday"
Dim ListsSheet As Worksheet
Dim LastRow As Long
Dim aCell As Range
Set ListsSheet = Sheets("Lists")
With ListsSheet
'Fills Days
LastRow = .Cells(.Rows.Count, "A").End(xlUp).Row
For Each aCell In .Range("A2:A" & LastRow)
If aCell.value <> "" Then
Me.Day.AddItem aCell.value
End If
Next
2) I'm able to gather the multi-selected values and transfer it to a worksheet for manipulation. Assuming the user selected days "Tuesday" + "Wednesday", my data in the cells = "Tuesday, Wednesday"
3) I'm attempting to recreate the listbox as it was originally selected by a user. I am able to use .additem to generate the list of days again, but I'm unsure how to go about selecting the correct .listindex value based on the initial selection