remove commas from numeric inputs

This commit is contained in:
Paul Trowbridge 2018-05-25 11:35:56 -04:00
parent b03218cd4d
commit 81e7bd3f07

View File

@ -2282,7 +2282,7 @@ Public Function SQLp_build_sql_values(ByRef tbl() As String, trim As Boolean, he
If tbl(j, i) = "" Then
rec = rec & "CAST(NULL AS NUMERIC)"
Else
rec = rec & Replace(tbl(j, i), "'", "''")
rec = rec & Replace(Replace(tbl(j, i), "'", "''"), ",", "")
End If
Case "S" '-------S = string------------------------------------------
If LTrim(RTrim(tbl(j, i))) = "" Then