string concatenation

fanfan2

Registered User.
Local time
Today, 05:07
Joined
Feb 26, 2007
Messages
61
In the table, i already had a few columns:

string1 string2 string3
001 1 1.5
001 2 6.4


I'd like to add a new column and concatenate the strings in previous columns with additional characters:

string1 string2 string3 string4
001 1 1.5 c-001-b01_1_5x
001 2 6.4 c-001-b02_6_4x
002 3 7 c-002-b03_7x

Is there a good way to do this? Thanks in advance.
 
You wouldn't want to save it in a table, but in a query:

NewField: "c-" & string1 & "whatever" & string2 & ...
 
And use Replace to change the . to _ in string3, call this say string3a and use that in the concatenated expression


Brian
 

Users who are viewing this thread

Back
Top Bottom