Can someone tell me how one goes about putting fields together. In MS Access, I use all kinds of Trim Statements with Lefts and Rights for a variety of purposes. Here I cannot figure out the proper syntax. The following is an example from Access:
UPDATE Voter SET Voter.HH = Trim(Soundex(Left([lname],5)) & Right([hn],4) & Left([sn],5) & Left([zip],5));
DL