View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default sendkeys and the "+"

Sendkeys left(range("r6").Text,1)

perhaps.

--
Regards,
Tom Ogilvy


"John" wrote in message
...
I am trying to send +, -, x, or / ....to an application using the

SendKeys
command.

I am using the following command line
SendKeys Format(Range("r6").Value, 1)

where R6 equals the plus, minus, x or / ....everything works fine except
for the plus sign? How can I send a plus sign to my application?

thanks