I need to run an update query to update any "," in a database to " ". The reason being is I am going to be exporting the data to a text file that is comma delimmited.
Code:Dim i as integer Dim varPos As integer Dim varFindChar as string Dim varLookUp as String varLookUp = DLookup() FindChar = "s" For i = 1 To Len(varLookUp) If Mid(varLookUp, i, 1) = FindChar Then Pos = i End If Next i