Sub maddelerrr_liste()
Dim i As Long, a As Long, deg As String
ReDim myarr(1 To 1, 1 To 1)
ComboBox13.Clear
For i = 2 To Cells(65536, "F").End(xlUp).Row
deg = Cells(i, "F").Value
If deg = ComboBox3.Value Then
a = a + 1
ReDim Preserve myarr(1 To 1, 1 To a)
myarr(1, a) = Cells(i, "G").Value
End If
Next i
If a > 0 Then
ComboBox13.Column = myarr
ComboBox13.ListIndex = 0
End If
End Sub
hocam son bir isteğim daha bunuda ona göre uydurabilirmisiniz...
Dim i As Long, a As Long, deg As String
ReDim myarr(1 To 1, 1 To 1)
ComboBox13.Clear
For i = 2 To Cells(65536, "F").End(xlUp).Row
deg = Cells(i, "F").Value
If deg = ComboBox3.Value Then
a = a + 1
ReDim Preserve myarr(1 To 1, 1 To a)
myarr(1, a) = Cells(i, "G").Value
End If
Next i
If a > 0 Then
ComboBox13.Column = myarr
ComboBox13.ListIndex = 0
End If
End Sub
hocam son bir isteğim daha bunuda ona göre uydurabilirmisiniz...