If
ComboBox1_Suche.Value <>
""
Then
AAAZ =
CDbl
(ZZFFF2.Range(
"A2:A5002"
).Cells.Find(What:=ComboBox1_Suche.Value, lookat:=xlWhole).Row)
TextBox2_STK.Value = ZZFFF2.Cells(AAAZ, 2).Value
TextBox3_TelSTK.Value = ZZFFF2.Cells(AAAZ, 3).Value
TextBox4_STV.Value = ZZFFF2.Cells(AAAZ, 4).Value
TextBox5_TelSTV.Value = ZZFFF2.Cells(AAAZ, 5).Value
TextBox6_Division.Value = ZZFFF2.Cells(AAAZ, 6).Value
End
If
_____________
Private
Sub
UserForm_Initialize()
On
Error
GoTo
EERR
With
UserForm1
.Height = 400
.Width = 600
End
With
ZZFFF2.Activate
With
ZZFFF2
ComboBox1_Suche.RowSource = .Range(.Cells(2, 1), .Cells(.Cells(Rows.Count, 1).
End
(xlUp).Row, 1)).Address(External:=
True
)
End
With