Special Characters

F

Fraggs

I looking to find out if it is possible to use special characters i
Excel msgbox's. Mainly the copyright and TM symbols. I tried the mos
obvious method I could think of by copying and pasting them in fro
word but that failed misserably!

Anyone able to help
 
F

Frank Kabel

Hi
for those two special characters use
- copyright symbol: Chr(169)
- TM symbol: Chr(153)

e.g.
msgbox "Copyright: " & Chr(169)
 
Top