vote up 1 vote down star

I'm trying to trim extraneous white space at the end of a memo field in MS Access. I've tried doing it a number of ways:

1) an update query with the field being updated to Trim([fieldname]). For some reason, that doesn't do anything. The whitespace is still there.

2) an update using a Macro function in which the field contents are passed as a String and then processed using the Trim() function and passed back. This one is really bizarre, in that it seems to truncate the text in the field at completely random places (different for each record). Sometimes 366 characters, sometimes 312, sometimes 280.

3) same as above but with RTrim()

How can I possibly be messing up such a simple function?! Any help much appreciated. Would like to keep my hair.

-Sam

flag
I guess you have some 'invisible' ascii character such as Line Return or Carriage Feed at the end of your string. Can you write a small procedure enumerating the ascii codes of all characters one by one? – Philippe Grondier May 6 at 20:57

3 Answers

vote up 0 vote down

Are you sure they are spaces?

link|flag
vote up 0 vote down

This may date me, but does Access have different character types for fixed vs. variable lengths? in SQL, CHAR(10) will always by 10 chars long, padded if necessary, while VARCHAR(10) will be 'the' size up to 10. Truncating a CHAR(10) will just put the blanks back.

link|flag
ACE/Jet does have distinct data types for NCHAR and NVARCHAR respectively (they can also be flagged WITH COMPRESSION which arguably makes them equivalent to CHAR and VARCHAR respectively). However, the OP said it was a MEMO column, which is blob data (FWIW the closest match in SQL Server land is NTEXT). – onedaywhen Jun 12 at 13:59
vote up 1 vote down

According to this article:

Both Text and Memo data types store only the characters entered in a field; space characters for unused positions in the field aren't stored.

As hypoxide suggested, they may not in fact be spaces

Edit

I suspect that the last character in the field is a carriage return or linefeed character. If this is the case, then Trim (or any variations of Trim - RTrim\LTrim) won't work since they only remove space characters. As 'onedaywhen' suggested in the comment, try using the ASC function to determine the actual character code of the last character in the memo field. You can use something like the following in a query to do this:

ASC(Right(MyFieldName,1))

Compare the result of the query to the Character Set to determine the actual character that ends the memo field. (Space = 32, Linefeed = 10, Carriage Return = 13).

You may have to test the last character and if it is a linefeed or carriage return remove the character and then apply the trim function to the rest of the string.

link|flag
There appear to me to be both spaces and line breaks. At least, if I put my cursor at the last letter/punctuation in the memo field and arrow key to the right while holding down my shift key, spaces and line-breaks are revealed by the highlighting. – sam May 6 at 21:43
If I mail merge the field into a Word document, the white space at the end shows up as spaces and paragraph symbols when I turn on invisible characters view in Word. So, I think they are spaces and line breaks. Any other way I could confirm that is what they are? – sam May 6 at 21:51
Use the ASC() function. – onedaywhen May 7 at 11:17
How did Sam come out on this issue? Can the question be declared "answered"? I certainly found help here. – Smandoli Sep 3 at 21:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.