Selam Arkadaşlar
B2 hücresinden yazmaya başlayıp enter yaptıkça sağa gitse ama enson N2 hücresine yazdıktan sonra enterle B3 hücresine geçse ve böyle devam etse olurmu?
Teşekkürler.
Public EnterdenSonrakiYon As Long
'-----------------------
Sub Auto_Open()
EnterdenSonrakiYon = Application.MoveAfterReturnDirection
Application.MoveAfterReturnDirection = xlToRight
End Sub
'------------------------
Sub Auto_Close()
Application.MoveAfterReturnDirection = EnterdenSonrakiYon
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 14 Then
Cells(Target.Row + 1, "B").Select
End If
End Sub
Private Sub Worksheet_Deactivate()
Application.MoveAfterReturnDirection = EnterdenSonrakiYon
End Sub
Private Sub Worksheet_Activate()
Application.MoveAfterReturnDirection = xlToRight
End Sub
Private Sub Workbook_Activate()
Application.MoveAfterReturnDirection = xlToRight
End Sub
Private Sub Workbook_Deactivate()
Application.MoveAfterReturnDirection = EnterdenSonrakiYon
End Sub
Bir çözümde benden olsun ,
B2 'den yazmaya başladığınızda sürekli TAB ile sağa kaymak.
N2 den sonra Enter tuşuna bastığınızda B3 'e zaten döner. Bu Excelin kendi özelliğinde standartta var.
İyi çalışmalar.
E.ALAN