DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub ListBox1_Click()
Cells(ListBox1.ListIndex + 9, 2).Select
[B3] = ActiveCell
[C3] = ActiveCell.Offset(0, 1)
[D3] = ActiveCell.Offset(0, 2)
[E3] = ActiveCell.Offset(0, 3)
[F3] = ActiveCell.Offset(0, 4)
ActiveWorkbook.Save
End Sub
Private Sub UserForm_Initialize()
ListBox1.ColumnCount = 5
ListBox1.RowSource = "B9:F27"
ListBox2.ColumnCount = 5
ListBox2.RowSource = "B2:F2"
End Sub
Private Sub ComboBox1_Change()
Dim SUT As Integer
ListBox1.Clear
ListBox1.ColumnCount = 2
For SUT = 1 To Cells(65536, "A").End(3).Row
If Cells(SUT, "A") Like ComboBox1 & "*" Then
ListBox1.AddItem
ListBox1.List(S, 0) = Cells(SUT, "A")
ListBox1.List(S, 1) = Cells(SUT, "B")
S = S + 1
End If
Next
End Sub
Private Sub ListBox1_Click()
Dim SUT As Integer
For SUT = 1 To Cells(65536, "A").End(3).Row
If Cells(SUT, "A") = ListBox1.List(ListBox1.ListIndex, 0) And Cells(SUT, "B") = ListBox1.List(ListBox1.ListIndex, 1) Then
Cells(SUT, "A").Select
TextBox1 = ActiveCell.Offset(0, 0)
TextBox2 = ActiveCell.Offset(0, 1)
End If
Next
End Sub
Private Sub UserForm_Initialize()
ComboBox1 = "."
ComboBox1 = ""
End Sub
Sayın serdarokan sanırım bu isteğinizi tam anlayamadım?dosya üzerinde tarif ederseniz ben veya diğer arkadaşlar yardımcı olacaktır.Varyasyon tercihleri her bir sütun için ayrı ayrı oluyor. Yani Period Monthly iken, Expence Group Mall, Currency Euro olabiliyor. Yani seçimlerin satırın tamamı için değil de her bir kriter için ayrı ayrı olması konusu da hal olabilirse sıra dışı bir iş olacak.