Jan 13, 2005 #1 docar Technical User Nov 20, 2002 12 US I'm concatenating 3 fields like this: FullName: [LNAME] & " " & [MNAME] & " " & [FNAME] If the MNAME field is blank, then there are 2 blank spaces in between LNAME and FNAME. How can I get rid of this extra blank space? Thanks in advance.
I'm concatenating 3 fields like this: FullName: [LNAME] & " " & [MNAME] & " " & [FNAME] If the MNAME field is blank, then there are 2 blank spaces in between LNAME and FNAME. How can I get rid of this extra blank space? Thanks in advance.
Jan 13, 2005 #2 RoyVidar Instructor Jun 16, 2000 6,606 NO Try replacing one of the ampersands (&) with pluss (+): [tt]FullName: [LNAME] & " " + [MNAME] & " " & [FNAME][/tt] Roy-Vidar Upvote 0 Downvote
Try replacing one of the ampersands (&) with pluss (+): [tt]FullName: [LNAME] & " " + [MNAME] & " " & [FNAME][/tt] Roy-Vidar
Jan 13, 2005 Thread starter #3 docar Technical User Nov 20, 2002 12 US Beautiful! Thanks a lot Royvidar! Upvote 0 Downvote