#1   Report Post  
Posted to microsoft.public.excel.misc
mangesh
 
Posts: n/a
Default Please help me


Hi,

I would like to know is there any function in excel which would take
the pointer to Cell L if I hit enter anywhere in row.

For example, say I am on Cell A1 , now if I hit enter the pointer
should go to
L1 and so on.

Thanks in advance.


--
mangesh


------------------------------------------------------------------------
mangesh's Profile: http://www.excelforum.com/member.php...fo&userid=6746
View this thread: http://www.excelforum.com/showthread...hreadid=525248

  #2   Report Post  
Posted to microsoft.public.excel.misc
chillihawk
 
Posts: n/a
Default Please help me

There isn't but you could write one:

Public Sub gotoL()

Dim lRow As Long

lRow = ActiveCell.Row

ActiveSheet.Range("L" & CStr(lRow)).Select

End Sub

Assign a key combination to it using the Macro dialog. I did
CTRL+SHIFT+L and whenever you want to navigate to column L just hit
your shortcut.

  #4   Report Post  
Posted to microsoft.public.excel.misc
Don Guillett
 
Posts: n/a
Default Please help me

right click sheet tabview codeinsert thischange ,5 to column desiredsave

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column < 1 Then Exit Sub
Target.Offset(, 5).Select

End Sub
--
Don Guillett
SalesAid Software

"mangesh" wrote in
message ...

Hi,

I would like to know is there any function in excel which would take
the pointer to Cell L if I hit enter anywhere in row.

For example, say I am on Cell A1 , now if I hit enter the pointer
should go to
L1 and so on.

Thanks in advance.


--
mangesh


------------------------------------------------------------------------
mangesh's Profile:
http://www.excelforum.com/member.php...fo&userid=6746
View this thread: http://www.excelforum.com/showthread...hreadid=525248



  #5   Report Post  
Posted to microsoft.public.excel.misc
vezerid
 
Posts: n/a
Default Please help me

This can be done with the Worksheet_SelectionChange event macro:

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Cells(Target.Row, "L").Select
End Sub

To install:
Right click the sheet tab. Choose View Code.
Paste the above code.

HTH
Kostis Vezerides



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 04:52 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"