DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Option Explicit
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Application.CutCopyMode = xlCopy Or Application.CutCopyMode = xlCut Then Exit Sub
If Not Intersect(Target, [D4:H65536]) Is Nothing Then
On Error Resume Next
If Target.Row >= 3 And Target.Row <= 23 Then
ActiveSheet.Shapes("Grup 1").Top = Cells(1, Target.Column).Top
ActiveSheet.Shapes("Grup 1").Left = Cells(1, Target.Column).Left
Cells(3, 2).Select
End If
If Target.Row >= 25 And Target.Row <= 45 Then
ActiveSheet.Shapes("Grup 1").Top = Cells(24, Target.Column).Top
ActiveSheet.Shapes("Grup 1").Left = Cells(24, Target.Column).Left
Cells(25, 2).Select
End If
End If
End Sub
Option Explicit
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Application.CutCopyMode = xlCopy Or Application.CutCopyMode = xlCut Then Exit Sub
If Not Intersect(Target, [b4:b65536]) Is Nothing Then
On Error Resume Next
ActiveSheet.Shapes("Grup 1").Top = Cells(Target.Row, Target.Column).Top
ActiveSheet.Shapes("Grup 1").Left = Cells(Target.Row, Target.Column).Left
End If
End Sub
Option Explicit
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Application.CutCopyMode = xlCopy Or Application.CutCopyMode = xlCut Then Exit Sub
If Not Intersect(Target, [d4:h65536]) Is Nothing Then
On Error Resume Next
ActiveSheet.Shapes("Grup 1").Top = Cells(Target.Row, "k").Top
ActiveSheet.Shapes("Grup 1").Left = Cells(Target.Row, "k").Left
ActiveWindow.ScrollRow = Target.Row - 10
End If
End Sub