aziz rasul
Active member
- Local time
- Today, 21:21
- Joined
- Jun 26, 2000
- Messages
- 1,935
I have the following code: -
However I want to extract the value in the 2nd column. How do I amend the code to do this?
Code:
For Each varItem In Me!cboCountry.ItemsSelected
strCountry = strCountry & ",'" & Me!cboCountry.ItemData(varItem) & "'"
Next varItem
However I want to extract the value in the 2nd column. How do I amend the code to do this?