add txt to end of records in update query

Rogdool

Registered User.
Local time
Today, 14:26
Joined
Aug 9, 2002
Messages
11
I'm missing something simple.

I'm updating records in a field in a table to add "jpg" to the end of each record, unfortunately it leaves a space between the record and the new text.

here's what I have

Update to : ([txtImageName] & "jpg")

"Result : 011230 jpg" "but need: 011230jpg"

Any Ideas???
 
No luck same result, still a space.
 
You need to Trim() the source field not the result.

Trim([txtImageName]) & "jpg"
 

Users who are viewing this thread

Back
Top Bottom