Sorgu için arama sonuçları: listcount

  1. B

    Listbox a veri gelince satır başına gitmesin

    ..."f") TextBox7.Text = Cells(ActiveCell.Row, "E") TextBox2.Text = Cells(ActiveCell.Row, "C") UserForm28.TextBox1.Text = Cells(ActiveCell.Row, "b") UserForm28.Show toplam = 0 For i = 1 To ListBox1.ListCount toplam = toplam + Val(ListBox1.List(i - 1)) Next i TextBox6 = toplam End Sub
  2. B

    Listbox a veri gelince satır başına gitmesin

    Private Sub UserForm_Initialize() With ListBox1 .RowSource = "A1:G96" .ColumnHeads = False .ColumnCount = 6 .ColumnWidths = "30;60;50;110;60" .RowSource = "A1:G" & Cells(Rows.Count, "B").End(xlUp).Row End With End Sub hocam bendeki inittialize bu...
  3. H

    Listbox a veri gelince satır başına gitmesin

    Böyle bir şey mi ? Private Sub UserForm_Initialize() For i = 1 To 5 ListBox1.AddItem i Next For j = 0 To ListBox1.ListCount - 1 If ListBox1.List(j) * 1 = [b2] Then ListBox1.Selected(j) = True End If Next End Sub
  4. B

    Combobox dan 2. seçtiğim veriyi 2. satıra yazdırma

    ...bu textboxlar için With UserForm7.ListBox1 .ColumnHeads = False .ColumnWidths = "30;60;50;110;60" .ColumnCount = 6 .AddItem .List(.ListCount - 1, 0) = "ADET" .List(.ListCount - 1, 1) = "BARKOD NO" .List(.ListCount - 1, 2) = "PALET NO" .List(.ListCount - 1, 3) = "Müşteri Adı" .List(.ListCount...
  5. B

    Listbox ta en son satırı secme

    hocam ben bu kodu yazınca excelin 96666 ci sayfasına gidiyor benim listbox 96 sayfalık bir liste
  6. B

    listboxda hücre satır toplama

    teşekkürler işimi çözdü hocam
  7. byfika

    listboxda hücre satır toplama

    merhabalar A sütununu toplatacaksanız aşağıdaki gibi uygulayın. For i = 1 To ListBox1.ListCount - 1 T = ListBox1.List(i - 0, 0) + T Next i TextBox6 = T
  8. B

    listboxda hücre satır toplama

    For i = 1 To ListBox1.ListCount - 1 T = ListBox1.List(i - 0, 1) + T Next i TextBox6 = T benim toplatacağım listbox 7 kolonlu listboxdaki a1 hücresi bu kod ile 2. kolonu topluyor bir altını yazıyorum hata veriyor a1 leri nasıl toplatırım?
  9. B

    Lİstbox Toplami

    hocam merhaba For i = 1 To ListBox1.ListCount - 1 T = ListBox1.List(i - 0, 1) + T Next i TextBox6 = T benim toplatacağım hücre 7 kolonlu listboxdaki a1 hücresi bu kod ile 2. kolonu topluyor bir altını yazıyorum hata veriyor a1 leri nasıl toplatırım
  10. byfika

    Listboxda filtreli toplama problemi

    ...Dim i As Long Dim toplam As Double Dim sutunIndex As Integer sutunIndex = 7 toplam = 0 For i = 0 To ListBox1.ListCount - 1 If IsNumeric(ListBox1.List(i, sutunIndex)) Then toplam = toplam + CDbl(ListBox1.List(i, sutunIndex)) End If Next i...
  11. R

    listbox çoklu seçim textbox yaz aktarma

    ...en az bir ürün seçiniz.", vbExclamation Exit Sub End If ' Seçilen her bir ürün için işlem yap For i = 0 To ListBox1.ListCount - 1 If ListBox1.Selected(i) Then urunAdi = ListBox1.List(i) ' urunSatir = CLng(ListBox1.List(i, 1)) '...
  12. N

    listbox çoklu seçim textbox yaz aktarma

    ..."C").Value <> "" Then ListBox1.AddItem ThisWorkbook.Sheets("Sayfa1").Cells(i, "c").Value ListBox1.List(ListBox1.ListCount - 1, 1) = i ListBox1.ListStyle = 1 ListBox1.MultiSelect = 1 End If End If Next i End Sub
  13. N

    sayfada farklı hücrelerden combobox getir seçili olan işlem yap

    üstad süpersin yaaa hepsi tam istediğim gibi olmuş sağolasın teşekürr ederim sağolasın.....
  14. N

    sayfada farklı hücrelerden combobox getir seçili olan işlem yap

    bu kod olayına ilave şöyle bir şey var kullandığım nasıl aktif edebilirim bu olaya acaba h alanına x yazdığımda x yazılı olan hücreleri gizliyor istediğim gizli olanlar combobox a gelmesin nasıl yapabilirim bunu hocam birde user formda ilave bitanede textbox3 var bunada combobox1 den seçilen...
  15. N

    sayfada farklı hücrelerden combobox getir seçili olan işlem yap

    merhaba üstad çok teşekürr ederim sağol geç cevap yazdım
  16. N

    userform combobox textbox sayfaya aktarma

    ..."B").Value <> "" Then ComboBox1.AddItem ThisWorkbook.Sheets("Sayfa1").Cells(i, "B").Value ComboBox1.List(ComboBox1.ListCount - 1, 1) = i End If Next i End Sub Private Sub CommandButton1_Click() Dim urunAdi As String Dim urunSatir As Long If...
  17. veyselemre

    Listboxta Birden fazla sütuna göre sıralama yapma

    ...If TextBox1 = "" Then TextBox2 = "" ListBox1.Clear ListBox2.Clear End If TextBox2 = ListBox1.ListCount TextBox3 = ListBox2.ListCount Call Topla_Logo Call Topla_Kademe End Sub Private Function Diz(ByVal Dizim As Variant, Stn1 As Integer, Stn2 As...
  18. Y

    Listbox Checkbox olayı

    Aşağıda yer alan kod ile checkbox tıklandıkça işlem yapmak istiyorum ama listbox tıklamaları algılamıyor. Konu hakkında bilgisi olan var mı?
  19. M

    Çözüldü Listbox Sütun Sorunu

    ...upper_i(Me.TextBox1.Text), vbTextCompare) Then With Me.ListBox1 .AddItem S1.Cells(r, "A").Value .List(.ListCount - 1, 1) = S1.Cells(r, "B").Value .List(.ListCount - 1, 2) = S1.Cells(r, "C").Value .List(.ListCount - 1, 3) =...
  20. M

    Çözüldü Listbox Sütun Sorunu

    ...upper_i(Me.TextBox1.Text), vbTextCompare) Then With Me.ListBox1 .AddItem S1.Cells(r, "A").Value .List(.ListCount - 1, 1) = S1.Cells(r, "B").Value .List(.ListCount - 1, 2) = S1.Cells(r, "C").Value .List(.ListCount - 1, 3) =...
Üst