
Add text to the beginning of an existing string
Quote:
>Is there a way (I know there is) to add text to the beginning of an existing
>string?
>Could it be as simple as: ExistingString = NewString + ExistingString
To add to Peter's eloquent reply ;-)
It is more usual to use:
ExistingString = NewString & ExistingString
Plus will propagate a Null value, ampersand will not.
--
Marsh
MVP [MS Access]