View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Ron de Bruin Ron de Bruin is offline
external usenet poster
 
Posts: 11,123
Default How to get Control M to move cursor down

Try this

Sub test()
ActiveCell(2).Select
End Sub

Or this one

Sub test2()
ActiveCell.Offset(1, 0).Select
End Sub


--
Regards Ron de Bruin
(Win XP Pro SP-1 XL2000-2003)
www.rondebruin.nl



"Dag Adamson" wrote in message m...
Hello-

My bar code scanner is sending an ASCII control-M to excel. I was
wondering how I might record a macro to get it to move the cursor
down.

I tried using the macro tool - but it merely places the cursor back to
the cell during the recording.

I imagine this is foolishly simple to do... any help would be greatly
appreciated.

Thanks
Dag

Please post and email