Replace squares on a multie value field.

aerosmith

Registered User.
Local time
Yesterday, 21:07
Joined
Jan 12, 2009
Messages
26
I have a field that has many records. in which there are squares instead of commas


Is there query or command i can try and have them replaced.
 
This can indicate you have used an invalid character
 
AeroSmith,

Use an update query and update to:

Replace([YourField], vbTab, ",")

That assumes that the "unprintable" characters are tabs.
They might be vbCr (Carriage-Return).

To experiment, add a new column to a regular Select query:

NewColumn: Replace([YourField], vbTab, ",")

hth,
Wayne
 

Users who are viewing this thread

Back
Top Bottom