R
Robin Chapple
I have a database with separate fields for "FirstName", "LastName" and
"Emailddress"
I use this SQL to produce a complete email address:
FullEmail: Chr$(34) & [FirstName] & " " & [LastName] & Chr$(34) & " <"
& & ">"
The query gives this type of output:
"Omar Chaidez" <[email protected]>
which is just as I planned.
When copied and pasted I get This:
"""Omar Chaidez"" <[email protected]>"
Where, and why, do the additional quotes come from?
Thanks,
Robin Chapple
"Emailddress"
I use this SQL to produce a complete email address:
FullEmail: Chr$(34) & [FirstName] & " " & [LastName] & Chr$(34) & " <"
& & ">"
The query gives this type of output:
"Omar Chaidez" <[email protected]>
which is just as I planned.
When copied and pasted I get This:
"""Omar Chaidez"" <[email protected]>"
Where, and why, do the additional quotes come from?
Thanks,
Robin Chapple