>Hello,
>
>I am trying to create a keyboard shortcut for a character.  Does
>anyone know how to do this in Excel for Win95?
>
>Thank you,
>
>Amita Guha


include a line in a sub
application.onkey "^x","ThisMacro"
when this sub is run, excel will assign Ctrl+x to run a macro called
"ThisMacro"

Sub ThisMacro
    activecell.value="Test"
end sub
whwever you hit ctrl+x - thismacro will fire and enter the text "test" in
the cell (and overwrite)

this key will be cleared when you exit excel you will have to assign it for
every session of excel
HTH
-----------------------

Aveesh Kumar
Excellence in Excel
AVP, Merrill Lynch
akumar@exchange.ml.com
-----------------------