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
Updated by Michael Lee over 19 years ago
no, that is crazy. Advise users that they can use search and replace in their
fields if they are space delimited.
Actions