Hi,
I'm using the following code to build a concatenated string from a
multi-select combo.
For Each varItem In Forms!frmreport s!Combo1.ItemsS elected
strSQL = strSQL & Forms!frmreport s!Combo1.ItemDa ta(varItem) & " OR
[ID]="
Next varItem
This retrieves the values form the first column in the multi-select. How do
I retrieve the second column which is not a numeric ID but a text field?
Thanks
I'm using the following code to build a concatenated string from a
multi-select combo.
For Each varItem In Forms!frmreport s!Combo1.ItemsS elected
strSQL = strSQL & Forms!frmreport s!Combo1.ItemDa ta(varItem) & " OR
[ID]="
Next varItem
This retrieves the values form the first column in the multi-select. How do
I retrieve the second column which is not a numeric ID but a text field?
Thanks
Comment