What happen to the concatenate function. if deleted what is the work around?
J John Apr 4, 2006 #2 Augie, Just use the ampersand symbol to concatenate, so for example: sFirstName = "Augie" sLastName = "Visio" sFullName = sFirstName & " " & sLastName Results in sFullName being: "Augie Visio" Best regards John
Augie, Just use the ampersand symbol to concatenate, so for example: sFirstName = "Augie" sLastName = "Visio" sFullName = sFirstName & " " & sLastName Results in sFullName being: "Augie Visio" Best regards John
A augie Apr 5, 2006 #3 Hi John, Thanks a lot. It worked just as you said and like I hoped it would. Thank you Augie