Private Sub Worksheet_Change(ByVal Target As Range)
Dim rngZelle As Range
If Target.Cells(1).Address = "$A$1" Then
If Target <> "" Then
Set rngZelle = Columns(1).Find(Target, lookat:=xlWhole, after:=Target)
If Not rngZelle Is Nothing Then Application.Goto reference:=rngZelle, scroll:=True
End If
End If
End Sub
Private Sub ComboBox1_Change() und End Sub
" eingetragen und glaubte allen Ernstes, dass ich so weiter komme.
Sub Scrollen()
Dim rngZelle As Range
Dim strSuche As String
With ActiveSheet.Shapes(Application.Caller)
strSuche = Range("B196:B203").Cells(.ControlFormat.ListIndex).Value
Set rngZelle = Columns(1).Find(strSuche, lookat:=xlWhole)
Application.Goto reference:=rngZelle, Scroll:=True
Set rngZelle = Nothing
End With
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
Dim rngZelle As Range
If Target.Cells(1).Address = "$A$1" Then
If Target <> "" Then
Set rngZelle = Columns(1).Find(Target, lookat:=xlWhole, after:=Target)
If Not rngZelle Is Nothing Then Application.Goto reference:=rngZelle, scroll:=True
End If
End If
End Sub
Private Sub ComboBox1_Change() und End Sub
" eingetragen und glaubte allen Ernstes, dass ich so weiter komme.
Sub Scrollen()
Dim rngZelle As Range
Dim strSuche As String
With ActiveSheet.Shapes(Application.Caller)
strSuche = Range("B196:B203").Cells(.ControlFormat.ListIndex).Value
Set rngZelle = Columns(1).Find(strSuche, lookat:=xlWhole)
Application.Goto reference:=rngZelle, Scroll:=True
Set rngZelle = Nothing
End With
End Sub