Use Tools|Autocorrect and add the symbols you want to use into your autocorrect list. For example when you type (c) excel automatically changes it to the copyright symbol. You can do the same for the symbols you're looking for.
How do you enter the symbol you want to use into the Autocorrect field? I tried to copy and paste it from word, but it just turned into a blank box... Thanks for your help.
There's an application called "Character Map" it should be under Start|Programs|Accessories you can use it to copy a special character and place it into the autocorrect field.
giacomo
A useful thing to do is to paste this code into your personal macro workbook, which launches Character Map:
Private Sub CharMap()
Dim RetVal
RetVal = Shell("C:\Windows\CharMap.EXE", 1)
End Sub
You can assign the code to a button on your toolbar to always have character map handy. Then you can easily copy and paste symbols into your spreadsheets.
-Ben O.