- the string you want is between the quotes:
" this is what you want "
- with only one quote on each side of [Bill] you get two strings:
" William "Bill" Clinton "
- quotes are special characters because they do more than one thing.
- to "let the computer know" you want the written character, double the character. to get William "Bill" Clinton, as in jj's example:
"""" & [ContactNickNameID].[Column](1) & """"
- another character with more than one function is '&'. in jj's example, the '&' connects the strings. what if you want the actual '&' (ampersand) character?
[correction:]
on some controls -- a command button, for example -- if you include 1 ampersand you will underline a letter (for use with the alt-key). if you want the ampersand character in the caption, you have to type 2 ampersands.