View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default How to force <enter to behave like <alt + <enter within a c

Perhaps you could do something like this:

Public Sub SetKey()
Application.OnKey "~", "rTurn"
End Sub

Public Sub UnSetKey()
Application.OnKey "~"
End Sub

Sub rTurn()
ActiveCell.Value = ActiveCell.Value & Chr(10)
SendKeys "{F2}{End}{Right}"
End Sub


--
Regards,
Tom Ogilvy

"luckyinky" wrote in message
...
Tom,
Thanks for the reply. I realize that <alt + <enter does what I want

it
to but I need to "overload" the <enter key to act like <alt + <enter.

Is
there no way to do this? i.e. via a Macro or some other VBA code

"Tom Ogilvy" wrote:

Alt+Enter does what you want. enter is not supported for this this and
macros essentially don't run while editing a cell.

--
Regards,
Tom Ogilvy

"luckyinky" wrote in message
...
I want the cursor to go to the next line within a cell when the user

presses
the <enter key. Does anyone know how to do this?