Actions
Bug #2098
closedallow space delimited stem lists
Start date:
06/02/2005
Due date:
% Done:
0%
Estimated time:
Bugzilla-Id:
2098
Description
replace code in moveE2toE_runall() with this: (needs test)
With rstTEmp
'get list of values
Do Until .EOF
Dim strList As String
strList = Trim(Nz(!list, ""))
If strList <> " " And strList <> "" Then
If InStr(strList, ",") = 0 Then
'no commas in the list, convert spaces to commas
strList = substTextForText(strList, " ", ",")
End If
End If
Call EmptyCollection(colList)
If csv_listIsNumeric(strList, True, colList) Then
Actions