MattBaldry
Self Taught, Learn from the Forums
- Local time
- Today, 18:03
- Joined
- Feb 5, 2019
- Messages
- 365
Hi Forum Minds,
I have found the below code on here which works almost perfectly.
Display Selection of a List Box in a Text Box
How would I be able to change this to only show unique/distinct values?
~Matt
I have found the below code on here which works almost perfectly.
Display Selection of a List Box in a Text Box
Code:
Dim strSelected As String
Dim varItem As Variant
With Me.lstLiveWorksOrderList
For Each varItem In .ItemsSelected
strSelected = strSelected & ", " & .Column(2, varItem)
Next varItem
Me.txtSelectedCustomerOrders = Mid(strSelected, 2)
End With
How would I be able to change this to only show unique/distinct values?
~Matt